blob: 3d376704f590a5fbdaf431407c44dbb7261ec811 (
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 { content: "generated"; }
</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>
|