CSS box-sizing test

by dipish

HTML

<div class="mybox">
A sambple box with margin, border and padding.
</div>

CSS

.mybox {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 300px;
    height: 100px;
    margin: 40px;
    border: solid 4px green;
    padding: 10px 20px;
}