mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
24 lines
342 B
HTML
24 lines
342 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
|
|
.fl:first-line { color: #ff00ff; background: #ffccff; }
|
|
|
|
.flWithContent:first-line { }
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body onload="document.getElementById('inner').removeAttribute('class');">
|
|
|
|
<div id="outer" class="fl">
|
|
a
|
|
<div id="inner" style="float: left;" class="flWithContent">
|
|
b
|
|
</div>
|
|
c
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|