Files
rust_browser/tests/goldens/fixtures/016-border-per-side.html
2026-01-29 22:48:34 -05:00

17 lines
235 B
HTML

<html>
<head>
<style>
.box {
width: 100px;
height: 50px;
border-width: 2px;
border-style: solid;
border-color: red green blue yellow;
}
</style>
</head>
<body>
<div class="box">Per-side colors</div>
</body>
</html>