blob: 676c6d6b06be496b948946364274cc27fd15e57b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!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>
<div>Two</div>
<span class="notstart notend">
<span>Three</span>
</span>
<div>Four</div>
<span class="notstart">
<span>Five</span>
</span>
</body>
</html>
|