Files
rust_browser/tests/goldens/fixtures/032-full-box-model.html
Zachary D. Rowitsch d78e1cab3f Phase 1D: Initial Commit
2026-01-29 21:21:29 -05:00

17 lines
234 B
HTML

<html>
<head>
<style>
.styled {
width: 100px;
background-color: lightblue;
border: 3px solid darkblue;
padding: 10px;
margin: 5px;
}
</style>
</head>
<body>
<div class="styled">Full box model</div>
</body>
</html>