mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-12-25 06:29:21 +00:00
21 lines
301 B
HTML
21 lines
301 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body > span { border: 3px solid blue }
|
|
#one { border-right: none; }
|
|
#four { border-left: none; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<span id="one">
|
|
One
|
|
Two
|
|
</span>
|
|
<div>Three</div>
|
|
<span id="four">
|
|
Four
|
|
</span>
|
|
</body>
|
|
</html>
|