blob: 5d3eb67eb81038a601eac9428ce297fbfde5769e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE HTML>
<title>outline goes around overflow, floats</title>
<style>
html, body { margin: 0; padding: 0; border: none }
html { overflow:hidden /* avoid second reflow for scrollbars */ }
body > div { margin: 100px; outline: 2px solid blue; display: inline-block; height: 0; width: 0; position: relative }
body > div > div { position: absolute; top: 0; left: 0; width: 100px; height: 100px }
</style>
<body>
<div><div></div></div>
|