.test {
position: relative;
width: 300px;
height: 100px;
box-sizing: border-box;
border: 1px solid #000;
}
.test:before {
position: absolute;
display: block;
content: '';
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
border: 1px dotted #900;
}