mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
17 lines
265 B
HTML
17 lines
265 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
|
|
#outer { float: left; }
|
|
#outer:first-letter { float: left; color: magenta; }
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body onload="document.getElementById('inner').style.counterReset = 'chicken';">
|
|
|
|
<div id="outer"><div id="inner"></div>xy</div>
|
|
|
|
</body>
|
|
</html>
|