首页 > 网站 > WEB开发 > 正文

伸缩布局的主轴布局方向详解+注释

2024-04-27 15:07:20
字体:
来源:转载
供稿:网友

 <!DOCTYPE html>
 <html>
 <head lang="en">
 <meta charset="UTF-8">
 <title></title>
 <style>
 body{
 background-color: #eee;
 }
 *{
 margin:0;
 padding: 0;
 list-style: none;
 }
  
 section{
 width: 1000px;
 margin:10px auto;
 }
 ul{
 background-color: #fff;
 border: 1px solid red;
 }
 li{
 width: 150px;
 height: 150px;
 background-color: pink;
 margin:10px;
 }
 section:nth-child(1) ul{
 overflow: hidden;
 }
 section:nth-child(1) ul li{
 float: left;
  
 }
  
 section:nth-child(2) ul{
 /*设置伸缩布局*/
 display:flex;
 }
  
 section:nth-child(3) ul{
 display: flex;
 /*主轴方向 row 水平向右*/
 flex-direction: row;
 }
  
 section:nth-child(4) ul{
 display: flex;
 /*主轴方向 row 水平向左*/
 flex-direction: row-reverse;
 }
  
 section:nth-child(5) ul{
 display: flex;
 /*主轴方向 column*/
 flex-direction: column;
 }
  
 section:nth-child(6) ul{
 display: flex;
 /*主轴方向 column*/
 flex-direction: column-reverse;
 }
  
 </style>
 </head>
 <body>
 <section>
 <h4>传统网页布局</h4>
 <ul>
 <li>1</li>
 <li>2</li>
 <li>3</li>
 </ul>
 </section>
  
 <section>
 <h4>伸缩布局 display:flex</h4>
 <ul>
 <li>1</li>
 <li>2</li>
 <li>3</li>
 </ul>
 </section>
 <section>
 <h4>伸缩布局 主轴方向:row</h4>
 <ul>
 <li>1</li>
 <li>2</li>
 <li>3</li>
 </ul>
 </section>
  
 <section>
 <h4>伸缩布局 主轴方向:row-reverse</h4>
 <ul>
 <li>1</li>
 <li>2</li>
 <li>3</li>
 </ul>
 </section>
  
 <section>
 <h4>伸缩布局 主轴方向:column 竖直 从上向下</h4>
 <ul>
 <li>1</li>
 <li>2</li>
 <li>3</li>
 </ul>
 </section>
  
 <section>
 <h4>伸缩布局 主轴方向:column-reverse 竖直 从下向上</h4>
 <ul>
 <li>1</li>
 <li>2</li>
 <li>3</li>
 </ul>
 </section>
 </body>
 </html>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表