Files
edx-platform/lms/static/sass/bourbon/css3/_box-sizing.scss
Don Mitchell 326d21d143 ie7 fixes: define indexOf, use charAt rather than [] to access string,
put try/catch around fn that was throwing errors.
2012-12-19 10:48:03 -05:00

7 lines
199 B
SCSS

@mixin box-sizing ($box) {
// content-box | border-box | inherit
-webkit-box-sizing: $box;
-moz-box-sizing: $box;
box-sizing: $box; *behavior: url(/static/scripts/boxsizing.htc);
}