blob: 64690fd7eedd5e77c50c6efe0fcb0c74c0d5d3d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<htm><head>
<style>
.li {
background: red;
float: left;
line-height: 0;
}
.ul {
list-style-type: none;
list-style-position: inside;
}
</style>
</head>
<body>
<pre>There should be no red areas.</pre>
<div class="ul">
<div class="li"><a href="#">
<img src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=" height="75" width="75">
</a></div>
</div>
</body></html>
|