문제: CSS를 사용하여 div 내에서 순서가 지정되지 않은 목록(
목표: 목표는 목록의 적절한 수평 정렬을 달성하는 것입니다. div 컨테이너 내에 목록을 추가하세요.
해결책:
예제 코드:
/* Solution 1: max-width and margin */ .container ul { max-width: 400px; margin: 0 auto; } /* Solution 2: display: inline-block and text-align */ .container-2 { text-align: center; } .container-2 ul { display: inline-block; } /* Solution 3: display: table and margin */ .container-3 ul { display: table; margin: 0 auto; } /* Solution 4: position: absolute, translateX, and left */ .container-4 ul { position: absolute; left: 50%; transform: translateX(-50%); } /* Solution 5: Flexbox Layout */ .container-5 { display: flex; justify-content: center; } .container-5 ul { list-style-position: inside; }
이러한 솔루션 중 하나를 CSS에 적용하면 순서가 지정되지 않은 목록을 수평으로 중앙에 효과적으로 배치할 수 있습니다. div 컨테이너입니다.
위 내용은 Div 내에서 정렬되지 않은 목록을 수평으로 가운데에 맞추는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!