레이아웃에 CSS 가변 상자 모델 flex 적용
Element centering
【1】주축 정렬 justify-content 및 교차 축 정렬 align-items 사용
<style>.parent{ display: flex; justify-content: center; align-items: center;}</style> <div class="parent" style="background-color: lightgrey; height: 100px; width: 200px;"> <div class="in" style="background-color: lightblue;">DEMO</div> </div>
【2 】 확장 가능한 프로젝트에서는 여백:자동 사용
<style>.parent{ display: flex;}.in{ margin: auto;}</style> <div class="parent" style="background-color: lightgrey;height: 100px;width: 200px;"> <div class="in" style="background-color: lightblue;">DEMO</div> </div>
양쪽 끝 정렬
<style>.parent{ display: flex; justify-content:space-between } </style> <div class="parent" style="background-color: lightgrey;height: 100px;width: 200px;"> <div class="in" style="background-color: lightblue;">DEMO</div> <div class="in" style="background-color: lightgreen;">DEMO</div> <div class="in" style="background-color: lightcyan;">DEMO</div> <div class="in" style="background-color: lightseagreen;">DEMO</div> </div>
아래쪽 정렬
<style>.parent{ display: flex; align-items: flex-end; } </style> <div class="parent" style="background-color: lightgrey;height: 100px;width: 200px;"> <div class="in" style="background-color: lightblue; height:20px;">DEMO</div> <div class="in" style="background-color: lightgreen; height:30px;">DEMO</div> <div class="in" style="background-color: lightcyan; height:40px;">DEMO</div> <div class="in" style="background-color: lightseagreen; height:50px;">DEMO</div> </div>
입력 상자 버튼
<style>.inputBox{ display: flex; width: 250px;}.inputBox-ipt{ flex: 1;} </style> <div class="inputBox"> <input class="inputBox-ipt"> <button class="inputBox-btn">按钮</button> </div>
균등 배포
<style>body,p{margin: 0;}.parent{ display: flex;}.child{ flex:1; height: 100px;}.child + .child{ margin-left: 20px;} </style> <div class="parent" style="background-color: lightgrey;"> <div class="child" style="background-color: lightblue;">1</div> <div class="child" style="background-color: lightgreen;">2</div> <div class="child" style="background-color: lightsalmon;">3</div> <div class="child" style="background-color: pink;">4</div> </div>
다중 열 적응형 레이아웃
rreee행잉 레이아웃
<style>p{margin: 0;}.parent{display: flex;}.left,.center{margin-right: 20px;}.right{flex: 1;}</style> <div class="parent" style="background-color: lightgrey;"> <div class="left" style="background-color: lightblue;"> <p>left</p> <p>left</p> </div> <div class="center" style="background-color: pink;"> <p>center</p> <p>center</p> </div> <div class="right" style="background-color: lightgreen;"> <p>right</p> <p>right</p> </div> </div>
전체 화면 레이아웃
<style> .box{ display: flex; background-color: lightgrey; width: 300px;}.left{ margin-right: 20px; background-color: lightblue; height: 30px;}.main{ flex:1;} </style> <div class="box"> <div class="left">左侧悬挂</div> <div class="main">主要内容主要内容主要内容主要内容主要内容主要内容主要内容主要内容主要内容主要内容主要内容主要内容主要内容</div> </div>
위는 레이아웃에 CSS 플렉스 박스 모델 플렉스를 적용한 내용입니다.
관련 참조: php 중국어 웹사이트
위 내용은 레이아웃에서 CSS 유연한 상자 모델 플렉스를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!