부모요소 속성
display : grid
자녀요소 속성
index.html
<body> <div class="parent"> <div>1</div> <div>2</div> </div> </body>
style.css
.parent { border: 5px solid #555; background-color: #eee; width: 900px; height: 200px; display: grid; grid-template-columns: repeat(2, auto); justify-items: center; align-items: center; } .parent div { background-color: palevioletred; width: 100px; height: 100px; text-align: center; } .parent div:nth-child(1) { justify-self: start; } .parent div:nth-child(2) { justify-self: end; align-self: end; }