<!doctype html>
<html lang = "en">
<style>
.box {
font-size: 15px;
padding: 15px;
}
.box1 {
background: green;
flex-basis: 150px;
}
.box2 {
background: blue;
flex-basis: 150px;
}
.box3 {
background: red;
flex-basis: 150px;
}
.container {
display: flex;
height: 100vh;
align-items: flex-start;
}
</style>
<body>
<div class = "container">
<div class = "box box1">One</div>
<div class = "box box2">two</div>
<div class = "box box3">three</div>
</div>
</body>
</html>
|