I want to create a unique border effect when hovering, similar to the one shown in this image:
https://i.sstatic.net/JsXVJ.png
I'm not quite sure how to define this border style. Any suggestions on how to achieve it?
.text {
width: 100px;
height: 20px;
text-align: center;
}
.text:hover {
border: 1px solid black;
}
<div class="text"> Sample </div>