39 lines
828 B
HTML
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>
|