flex2
by rootjang
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>flex-direction2</title>
<style>
#container {
display: flex;
flex-direction: column;
}
#container div {
width: 200px;
border: 1px solid black;
background: #ccc;
}
</style>
</head>
<body>
<div id="container">
<div id="box1"><h2>1</h2></div>
<div id="box2"><h2>2</h2></div>
<div id="box3"><h2>3</h2></div>
</div>
</body>
</html>