Grid
2024. 7. 2.
Grid .container{ border: 10px dashed #ccc; width: 600px; height: 600px; margin: 50px auto; /* display: grid; */ } .item{ border: 5px solid orangered; padding: 20px; font-size: 20px; display: flex; justify-content: center; align-items: center; } 그리드를 지정하지 않고 아이..