Files
rust_browser/tests/goldens/fixtures/062-flex-column.html
Zachary D. Rowitsch 2bf8ce6de8 Phase 3: Initial commit
2026-01-31 16:20:53 -05:00

29 lines
633 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.container {
display: flex;
flex-direction: column;
width: 100px;
height: 200px;
background-color: lightgray;
}
.item {
width: 80px;
height: 30px;
}
.red { background-color: red; }
.green { background-color: green; }
.blue { background-color: blue; }
</style>
</head>
<body>
<div class="container">
<div class="item red">A</div>
<div class="item green">B</div>
<div class="item blue">C</div>
</div>
</body>
</html>