Skip to content

Instantly share code, notes, and snippets.

@tachang
Created March 18, 2015 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tachang/8ed00d576494999a07c6 to your computer and use it in GitHub Desktop.
Save tachang/8ed00d576494999a07c6 to your computer and use it in GitHub Desktop.
Option 1)
<div>
<h3>Header</h3>
</div>
- Use position relative on h3. Problem is that it looks on the outside but the markup is on the inside.
Option 2)
<div>
<h3>Header</h3>
<div>
Content
</div>
</div>
- What I want but it is more of a div explosion.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment