@import "https://compass-style.org/files/beta-sub/examples/compass/css3/compass/css3";
.box-sizing-example {
background: red;
padding: 20px;
border: 10px solid green;
margin: 20px;
width: 200px;
}
#content-box {
@include box-sizing(content-box);
}
#border-box {
@include box-sizing(border-box);
}
@import https://compass-style.org/files/beta-sub/examples/compass/css3/compass/css3
.box-sizing-example
background: red
padding: 20px
border: 10px solid green
margin: 20px
width: 200px
#content-box
+box-sizing(content-box)
#border-box
+box-sizing(border-box)
.box-sizing-example {
background: red;
padding: 20px;
border: 10px solid green;
margin: 20px;
width: 200px;
}
#content-box {
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
#border-box {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}