Provides a border for the element, with a width equal to 1 local device pixel, which can be very sharp and clear.
HTML CODE:
<div class="hairline-border">
text with a thin border around it.
</div>
CSS CODE:
.hairline-border {
box-shadow: 0 0 0 1px;
}
@media (min-resolution: 2dppx) {
.hairline-border {
box-shadow: 0 0 0 0.5px;
}
}
@media (min-resolution: 3dppx) {
.hairline-border {
box-shadow: 0 0 0 0.33333333px;
}
}
@media (min-resolution: 4dppx) {
.hairline-border {
box-shadow: 0 0 0 0.25px;
}
}