플렉시블 레이아웃
플렉시블 레이아웃 (Flexible Layout)
<html>
<head>
</head>
<body>
<div class="flex-container">
<div class="flex-item">F</div>
<div class="flex-item">L</div>
<div class="flex-item">E</div>
<div class="flex-item">X</div>
</div>
</body>
</html>.flex-container {
display: flex; /* 기본값 flex-direction: row */
}플렉스 축(Axis)


참고
Last updated