Bootstrap 5에서 Div를 중앙에 배치하는 방법
2637 단어 bootstratutorialwebdevbootstrap5
view
How to install & setup bootstrap 5
1) .d-flex .align-items-center 및 .justify-content-center 클래스를 사용하여 div 요소를 중앙에 배치하는 부트스트랩 5.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bootstrap 5 Div Center</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="d-flex align-items-center justify-content-center vh-100">
<div class="shadow p-4">
<h5>Bootstrap 5 Div Center</h5>
</div>
</div>
</body>
</html>
Reference
이 문제에 관하여(Bootstrap 5에서 Div를 중앙에 배치하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/frontendshape/how-to-center-div-in-bootstrap-5-4hmi텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)