mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|