blob: d63bf6b07252a4d7496b43067830ceeebf28d3ea (
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>
|