blob: 6400bc50a2a9ceff64b7a9c5993b473b65ac567c (
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
|
<html>
<style type="text/css">
#header ul {
list-style: none;
}
#header li {
padding: 0 0 0 9px;
}
#header a {
float: left;
width: .1em;
}
#header > ul a {
width: auto; /* doesn't work */
}
</style>
<div id="header">
<ul>
<li> <a>This is link one</a></li>
<li> <a>This is link two and it shouldn't overlap link one</a></li>
</ul>
</div>
</html>
|