whitespace-present-1-ref.html (501B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Test Reference</title> 4 <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"> 5 <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/"> 6 <style> 7 body > span { border: 3px solid blue } 8 .notstart { border-left: none; } 9 .notend { border-right: none; } 10 </style> 11 <body> 12 <span class="notend"></span> 13 <div>One</div> 14 <span class="notstart notend"></span> 15 <div>Two</div> 16 <span class="notstart"></span> 17 </body>