Border-color test

by laustdeleuran

HTML

<div>Border-color-test</div>

CSS

body {
    background: red;    
}
div {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    
    margin: 50px;
    padding: 50px;
    width: 250px;
    height: 250px;
    border: 20px solid blue;
    border-bottom-color: transparent;
    
    background: yellow;
}