mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-12-26 13:32:16 +00:00
15 lines
396 B
HTML
15 lines
396 B
HTML
<!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; position: relative }
|
|
|
|
body > div > div { position: absolute; top: 0; left: 0; width: 100px; height: 100px }
|
|
|
|
</style>
|
|
<body>
|
|
<div><div></div></div>
|