赞
踩
标准流也叫文档流,指的是标签在页面中默认的排布规则,例如:块元素独占一行,行内元素可以一行显示多个。
作用:让块元素水平排列。
属性名:float
属性值
<style> /* 特点:顶对齐;具备行内块显示模式特点;浮动的盒子会脱标 */ .one { width: 100px; height: 100px; background-color: brown; float: left; } .two { width: 200px; height: 200px; background-color: orange; /* float: left; */ float: right; } </style> <div class="one">one</div> <div class="two">two</div>
特点:
<!-- 版心:左右,右面:8个产品 → 8个 li --> <div class="product"> <div class="left"></div> <div class="right"> <ul> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> <li></li> </ul> </div> </div>
<style> * { margin: 0; padding: 0; } li { list-style: none; } .product { margin: 50px auto; width: 1226px; height: 628px; background-color: pink; } .left { float: left; width: 234px; height: 628px; background-color: skyblue; } .right { float: right; width: 978px; height: 628px; background-color: brown; } .right li { float: left; margin-right: 14px; margin-bottom: 14px; width: 234px; height: 300px; background-color: orange; } /* 第四个li和第八个li 去掉右侧的margin */ .right li:nth-child(4n) { margin-right: 0; } /* 细节:如果父级宽度不够,浮动的盒子会掉下来 */ </style>
场景:浮动元素会脱标,如果父级没有高度,子级无法撑开父级高度(可能导致页面布局错乱)
解决方法:清除浮动(清除浮动带来的影响)
<style> .top { margin: 10px auto; width: 1200px; /* height: 300px; */ background-color: pink; } .left { float: left; width: 200px; height: 300px; background-color: skyblue; } .right { float: right; width: 950px; height: 300px; background-color: orange; } .bottom { height: 100px; background-color: brown; } </style> <div class="top"> <div class="left"></div> <div class="right"></div> </div> <div class="bottom"></div>
在父元素内容的最后添加一个块级元素,设置 CSS 属性 clear: both
<style>
.clearfix {
clear: both;
}
</style>
<div class="father">
<div class="left"></div>
<div class="right"></div>
<div class="clearfix"></div>
</div>
.clearfix::after {
content: "";
display: block;
clear: both;
}
<div class="father clearfix"></div>
/* before 解决外边距塌陷问题 */
/* 双伪元素法 */
.clearfix::before,
.clearfix::after {
content: "";
display: table;
}
/* after 清除浮动 */
.clearfix::after {
clear: both;
}
<div class="father clearfix"></div>
.father {
margin: 10px auto;
width: 1200px;
/* height: 300px; */
background-color: pink;
overflow: hidden;
}
Flex 布局也叫弹性布局,是浏览器提倡的布局模型,非常适合结构化布局,提供了强大的空间分布和对齐能力。
Flex 模型不会产生浮动布局中脱标现象,布局网页更简单、更灵活。
设置方式:给父元素设置 display: flex,子元素可以自动挤压或拉伸
组成部分:
属性名:justify-content
主轴默认在水平方向,侧轴默认在垂直方向
属性名:flex-direction
作用:控制弹性盒子的主轴方向的尺寸。
属性名:flex
属性值:整数数字,表示占用父级剩余尺寸的份数。
弹性盒子可以自动挤压或拉伸,默认情况下,所有弹性盒子都在一行显示。
属性名:flex-wrap
属性值
属性名:align-content
注意:该属性对单行弹性盒子模型无效。
<div class="box"> <ul> <li> <h4>一键发布多端</h4> <p>发布视频到抖音短视频、西瓜视频及今日头条</p> </li> <li> <h4>管理视频内容</h4> <p>支持修改已发布稿件状态和实时查询视频审核状态</p> </li> <li> <h4>发布携带组件</h4> <p>支持分享内容携带小程序、地理位置信息等组件,扩展内容及突出地域性</p> </li> <li> <h4>数据评估分析</h4> <p>获取视频在对应产品内的数据表现、获取抖音热点,及时进行表现评估</p> </li> </ul> </div>
<style> *{ margin: 0; padding: 0; box-sizing: border-box; } li{ list-style: none; } .box{ margin: 50px auto; width: 1200px; height: 418px; border-radius: 10px; border: 1px solid #ddd; } .box ul{ width: 1200px; height: 418px; padding: 90px 40px 90px 60px; display: flex; flex-wrap: wrap; justify-content: space-between; align-content: space-between; } .box li{ width: 500px; height: 88px; /* background-color: #c61bba; */ padding-left: 103px; } .box ul li:nth-child(1){ background: url(./images/1.svg) no-repeat 0 center; } .box ul li:nth-child(2){ background: url(./images/2.svg) no-repeat 0 center; } .box ul li:nth-child(3){ background: url(./images/3.svg) no-repeat 0 center; } .box ul li:nth-child(4){ background: url(./images/4.svg) no-repeat 0 center; } h4{ font-size: 20px; color: #333; line-height: 40px; font-weight: 400; } p{ font-size: 14px; color: #666; } </style>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。