blob: 99d9031cf548a2a40484242b9bfb816d6f53f16e (
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
28
29
30
31
32
33
34
|
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-size: 0.8em;
}
ul {
display: inline;
margin: 0;
padding: 0;
list-style: none;
}
li {
display: inline-block;
border-left: 1px solid silver;
padding-left: 0.5em;
}
</style>
</head>
<body>
<ul>
<li><a href="#">Birds of North America</a></li>
<li><a href="#">Old French loanwords</a></li>
</ul>
<p>
The two links above should not wrap.
</p>
</body>
</html>
|