blob: 970a2000b22fb00e5ddba2db68334c12fae40d7c (
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">
<span>Two</span>
</span>
</body>
</html>
|