block-in-inline-whitespace-001-ref.xht (533B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> 2 <title>CSS Test Reference</title> 3 <style type="text/css"> 4 body > span { border: 3px solid blue } 5 .notstart { border-left: none; } 6 .notend { border-right: none; } 7 </style> 8 </head> 9 <body> 10 <span class="notend"></span> 11 <div>One</div> 12 <span class="notstart notend"></span> 13 <div>Two</div> 14 <span class="notstart"></span> 15 16 17 </body></html>