Skip to content

Instantly share code, notes, and snippets.

@thamas
Created May 19, 2013 15:16
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 thamas/5607955 to your computer and use it in GitHub Desktop.
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
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