blob: 8fcfdaff756a0fa84d72483a008324aef1bc252a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<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>
|