0๐
.square {
position:relative;
border: 1px solid blue;
width: 100px;
height: 100px;
}
.square::after {
position:absolute;
content: '';
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border: 1px solid blue;
}
5px is the gap between the borders.
- [Vuejs]-Can't pass a foreign key selected from a dropdown in Vue.js to my API in DRF
- [Vuejs]-Error saying variable is not defined when it is clearly defined
Source:stackexchange.com