outline-overflow-block-float.html (423B)
1 <!DOCTYPE HTML> 2 <title>outline doesn't go around overflowing floats</title> 3 <style> 4 5 html, body { margin: 0; padding: 0; border: none } 6 html { overflow:hidden /* avoid second reflow for scrollbars */ } 7 8 body > div { 9 margin: 100px; 10 width: 50px; height: 50px; 11 outline: 2px solid blue; 12 position: relative; 13 } 14 15 body > div > div { 16 float: left; 17 width: 100px; 18 height: 100px; 19 } 20 21 </style> 22 <body> 23 <div><div></div></div>