Files
rust_browser/tests/goldens/fixtures/031-different-border-widths.html
Zachary D. Rowitsch d78e1cab3f Phase 1D: Initial Commit
2026-01-29 21:21:29 -05:00

20 lines
304 B
HTML

<html>
<head>
<style>
.box {
width: 80px;
height: 40px;
border-style: solid;
border-color: black;
border-top-width: 1px;
border-right-width: 4px;
border-bottom-width: 8px;
border-left-width: 2px;
}
</style>
</head>
<body>
<div class="box">Asymmetric</div>
</body>
</html>