ladybird/Tests/LibWeb/Layout/input/css-snap-a-length-as-a-border-width.html
2025-06-07 11:09:53 +01:00

15 lines
No EOL
294 B
HTML

<!DOCTYPE html>
<style>
div {
width: 100px;
height: 100px;
}
/* Both of these border-widths should snap to 1px. */
.a {
border: 1.8px solid black;
}
.b {
border: 0.2px solid black;
}
</style><div class="a"></div><div class="b"></div>