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

39 lines
828 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.container {
display: flex;
flex-direction: row;
width: 200px;
height: 80px;
background-color: lightgray;
margin-bottom: 10px;
}
.center {
align-items: center;
}
.stretch {
align-items: stretch;
}
.item {
width: 50px;
background-color: red;
}
.fixed-height {
height: 30px;
}
</style>
</head>
<body>
<div class="container center">
<div class="item fixed-height">A</div>
<div class="item fixed-height">B</div>
</div>
<div class="container stretch">
<div class="item">X</div>
<div class="item">Y</div>
</div>
</body>
</html>