html:
<div class='box'></div>
css:
.box {
position: relative;
width: 100px;
height: 100px;
}
.box::after {
content: ' ';
position: absolute;
top: 0;
left: 0;
width: 200%;
height: 200%;
border: 1PX solid #e0e0e0;
transform-origin: 0 0;
transform: scale(0.5);
}