| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <title>CSS Test Reference</title> | |
| <link rel="author" title="Boris Zbarsky" href="mailto:[email protected]"> | |
| <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/"> | |
| <style> | |
| body > span { border: 3px solid blue } | |
| .notstart { border-left: none; } | |
| .notend { border-right: none; } | |
| </style> | |
| <body> | |
| <span class="notend"></span> | |
| <div>One</div> | |
| <span class="notstart notend"></span> | |
| <div>Two</div> | |
| <span class="notstart"></span> | |
| </body> |