MIZZUmizzu-creations.hashnode.dev·Jun 17, 2024css에서 요소를 가운데 정렬하는 다양한 방법들1. 글의 목적 요소를 중앙 정렬할 때, display: flex; justify-content: center; align-items: center; 조합을 자주 사용하고 있는 습관을 발견했다. 이 방법이 잘못된 것은 아니지만, 반드시 필요하지 않은 부분에도 사용하고 있는 것 같은 느낌을 받았다. 이 글의 목적은 요소를 중앙 정렬하는 다양한 방법을 탐구하고, 상황에 맞는 적절한 속성을 사용할 수 있도록 하는 것이다. 2. 수평 중앙 정렬 ...CSS
Udit Sharmadevsolutions.hashnode.dev·Dec 17, 2022How do you center align a div inside another div?To center align a div inside another div, you can use the following steps: Add a parent div element around the div that you want to center align. Add the following CSS to the parent div: .parent { display: flex; justify-content: center; ali...align