html、css || 清除浮动的四种方式

html、css || 清除浮动的四种方式

清除浮动的四种方式

清除浮动的原因:1、父元素没有设置高度; 2、子元素设置了浮动;3、影响了下面元素的布局

一、闭合浮动

//css样式的书写
<style>
        .box {
            width: 1000px;
            margin: 0 auto;
            background-color:pink;
        }
        .smallbox {
            width:100px;
            height: 200px;
            float:left;
            background-color:skyblue;
        }
        .footer {
            width: 1000px;
            height: 100px;
            background-color:black;
        }
        /* 为空白标签,设置clear样式 */
        .clearfix {
            clear:both;
        }
 </style>


<body>
    <div class="box">
        <div class="smallbox"></div>
        <div class="clearfix"></div> 
	</div>
	<div class="footer">footer</div>
</body>

二、overflow:hidden

<style>
	.box {
		width:1000px;
		margin:0 auto;
        background-color: pink;
		/*在父级元素样式加上overflow: hiddden样式,此方法会隐藏溢出*/
		overflow: hidden;
	}
	.smallbox {
		width:100px;
		height: 200px;
		float:left;
        background-color: skyblue;
	}
	.footer {
            width: 1000px;
            height: 100px;
            background-color:black;
        }
</style>

<body>
	<div class="box">
		<div class="smallbox"></div>
	</div>
	<div>footer</div>
</body>

三、after伪元素

<style>
	.box {
		width:1000px;
		margin:0 auto;
        background-color: pink;
	}
	.smallbox {
		width:100px;
		height: 200px;
		float:left;
        background-color: skyblue;
	}
	.footer {
            width: 1000px;
            height: 100px;
            background-color:black;
        }
    /*父级after伪元素*/
	.clearfix:after {
		content:"";
		display: block;
		height:0;
		clear: both;
		visibility: hidden;
	}
	.clearfix {
		*zoom: 1;
	}
</style>
<body>
	<div class="box clearfix">
		<div class="smallbox"></div>
	</div>
	<div class="footer">footer</div>
</body>

四、双伪元素

<style>
	.box {
		width:1000px;
		margin:0 auto;
        background-color: pink;
	}
	.smallbox {
		width:100px;
		height: 200px;
		float:left;
        background-color: skyblue;
	}
	.footer {
            width: 1000px;
            height: 100px;
            background-color:black;
        }
    /*父级双伪元素*/
	.clearfix:before, 
	.clearfix:after {
		content:"";
		display:table;
	}
	.clearfix:after{
		clear:both;
	}
</style>
<body>
	<div class="box clearfix">
		<div class="smallbox"></div>
	</div>
	<div class="footer">footer</div>
</body>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值