Created
May 19, 2013 15:16
-
-
Save thamas/5607955 to your computer and use it in GitHub Desktop.
Compass: set box-sizing to border-box for all html5 block level element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
article, | |
aside, | |
blockquote, | |
body, | |
br, | |
button, | |
canvas, | |
caption, | |
col, | |
colgroup, | |
dd, | |
div, | |
dl, | |
dt, | |
embed, | |
fieldset, | |
figcaption, | |
figure, | |
footer, | |
form, | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6, | |
header, | |
hgroup, | |
hr, | |
li, | |
map, | |
object, | |
ol, | |
output, | |
p, | |
pre, | |
progress, | |
section, | |
table, | |
tbody, | |
textarea, | |
tfoot, | |
th, | |
thead, | |
tr, | |
ul, | |
video { | |
@include box-sizing(border-box); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment