blob: adcb6bc4ff3b7acc2f2ca0f136665272c0e2beb0 (
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>Ten</span>
</span>
</body>
</html>
|