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;
}
}
Description
- box-shadow , when using only extensions, add a fake border that can use subpixels*.
- Use @media (min-resolution: ...) To check the device pixel ratio ( 1dppx equal to 96 DPI), set box-shadow the distribution to 1 / dppx. .
Post your comments / questions
Recent Article
- How to add two numbers in Android Studio? | Source Code
- FindViewByID returns null in android studio -SOLVED
- Saving changes is not permitted in SQL SERVER - [SOLVED]
- Restore of database failed. File cannot be restored over the existing. -[SOLVED]
- One or more projects in the solution were not loaded correctly in Visual Studio 2019 | FIXED
- How to find Laptop's Battery Health?
- SOLVED-Related Field got invalid lookup: icontains error in Django
- How to enable Search Feature in Django admin?
Related Article