Skip to content

Instantly share code, notes, and snippets.

@cwsaylor
Created January 28, 2012 01:59
Show Gist options
  • Save cwsaylor/1692081 to your computer and use it in GitHub Desktop.
Save cwsaylor/1692081 to your computer and use it in GitHub Desktop.
Fix 100% form elements
/* http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-encourage-responsive-form-elements-to-play-nice/ */
input[type='text'],
textarea {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment