JavaScript
3
Вклад в тег
.квадрат {
position: relative; // или absolute
border: 4px solid yellow;
border-left: none;
width: ...;
height: ...;
}
.квадрат::before, .квадрат::after {
content: "";
position: absolute;
left: 0;
width: 4px;
background: yellow;
}
.квадрат::before {
top: 0;
height: ...;
}
.квадрат::after{
bottom: 0;
height: ...;
}