blob: d108d462614e9b798064c523c150a2da7062e4b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!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>
<div>One</div>
<span class="notstart notend"></span>
<div>Two</div>
<span class="notstart"></span>
</body>
</html>
|