37 lines
794 B
HTML
37 lines
794 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 300px;
|
|
height: 40px;
|
|
background-color: lightgray;
|
|
margin-bottom: 10px;
|
|
}
|
|
.center {
|
|
justify-content: center;
|
|
}
|
|
.space-between {
|
|
justify-content: space-between;
|
|
}
|
|
.item {
|
|
width: 50px;
|
|
height: 30px;
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container center">
|
|
<div class="item">A</div>
|
|
<div class="item">B</div>
|
|
</div>
|
|
<div class="container space-between">
|
|
<div class="item">X</div>
|
|
<div class="item">Y</div>
|
|
</div>
|
|
</body>
|
|
</html>
|