mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
18 lines
350 B
HTML
18 lines
350 B
HTML
<!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>
|