Skip to content

Instantly share code, notes, and snippets.

@kizu
Created October 18, 2012 21:44
Show Gist options
  • Save kizu/3914929 to your computer and use it in GitHub Desktop.
Save kizu/3914929 to your computer and use it in GitHub Desktop.
The difference between inline and block absolutes
/* The difference between inline and block absolutes */
<div>
<span>Inline element</span>
<span style="position: absolute;">Absolute inline element</span>
</div>
<br/>
<div>
<span>Inline element</span>
<div style="position: absolute;">Absolute block element</div>
</div>
<br/>
<div>
<div>Block element</div>
<span style="position: absolute;">Absolute inline element</span>
</div>
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment