mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 18:05:08 +00:00
22 lines
457 B
HTML
22 lines
457 B
HTML
<style>
|
|
body {
|
|
font-family: 'SerenitySans';
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
border: 1px solid salmon;
|
|
width: 500px;
|
|
}
|
|
|
|
.box {
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
<div class="container">
|
|
<div class="box" style="flex: 80% 0 3;">1</div>
|
|
<div class="box" style="flex: 80% 0 2;">2</div>
|
|
<div class="box" style="flex: 80% 0 1;">3</div>
|
|
</div>
|