![javascript](https://habrastorage.org/r/w120/webt/59/cc/76/59cc7600c78a2239379574.jpeg)
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: ...;
}