blob: 1fc31e04ddcca365ff95fd4a117ab94f160af23d (
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>
<html>
<head>
<style>
body > span { border: 3px solid blue }
.notstart { border-left: none; }
.notend { border-right: none; }
</style>
</head>
<body>
<span class="notend">
<span>One</span><span>Two</span><span>Three</span>
</span>
<div>Four</div>
<span class="notstart notend"></span>
<div>Five</div>
<span class="notstart notend">
<span>Six</span>
</span>
<div>Seven</div>
<span class="notstart notend"></span>
<div>Eight</div>
<span class="notstart">
<span>Nine</span>
</span>
</body>
</html>
|