Skip to content

Instantly share code, notes, and snippets.

@carlossalas
Created March 17, 2013 07:00
Show Gist options
  • Save carlossalas/5180449 to your computer and use it in GitHub Desktop.
Save carlossalas/5180449 to your computer and use it in GitHub Desktop.
CSS: BoxSizing, IMG VerticalAlign, BODY HTML height 100%, FORM ELEMENTS Outline, Resize
/* apply a natural box layout model to all elements */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0; padding: 0; }
img { vertical-align: bottom; }
body, html
{
height: 100%;
outline: none;
}
input, textarea, select, button
{
outline: none;
resize: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment