<div class="box"></div>
body,html {
width: 100%;
height: 100%;
}
body {
display: grid;
place-items:center;
}
.box {
position: relative;
width: 330px;
height: 210px;
border-radius: 20px;
background:
repeating-linear-gradient(
-45deg,
#000 0,
#000 7px,
transparent 7px,
transparent 10px
);
&::before {
content: "";
position: absolute;
inset: 1px;
background: #eee;
border-radius: 20px;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.