盒模型與BFC

markriver發表於2021-09-09
<!DOCTYPE html>
<html>
<head>
	<title>盒模型、BFC</title>
	<style type="text/css">
		html{
			margin: 0px;
			padding: 0px;
		}
		.hidden{
				background-color: red;
				overflow: hidden;
		}
		.hidden .child{
			background-color: yellow;
			height: 100px;
			margin-top: 10px
		}
		.float{
			margin-top: 60px;
				background-color: red;
				
		}
		.float .left{
			background-color: yellow;
			height: 100px;
			width: 50px;
			float:left;
		}
		.float .right {
			background-color: blue;
			height: 130px;
			/*clear: left;*/
			/*overflow: hidden;*/
		}

	</style>
</head>
<body>
<!-- BFC 解決邊距重疊問題
BFC: 封閉的空間,相當於封裝,外部不會影響內部,內部也不影響外部。
作用:自適應佈局。 應用場景:清除float的影響;去margin重疊。

邊距重疊:父子元素垂直方向邊距重疊,還有上下兄弟元素,取margin-top和margin-bottom最大值;空元素取該元素margin-top和margin-bottom最大值。 
-->	
<div class="hidden">
	<div class="child">
		 hidden建立bfc 
	</div>
</div>
<!-- BFC不與float重疊 -->
<div class="float">
	<div class="left">
		BFC不與float重疊   left
	</div>
	<div class="right">
		BFC不與float重疊  right
	</div>
</div>
<!-- BFC的子元素即使是float,也會參與BFC的高度計算-->
<style type="text/css">
	.height{
		background-color: red;
		margin-top: 30px;
		/*overflow: auto;*/
		/*float:left; overflow都可以將子元素納入父元素height的計算*/
		float:left;
	}
	.height .child{
		background-color: pink;
		float:left;
		font-size:20px;
	}
</style>
<div class="height">
	<div class="child">
		 bfc child
	</div>
	
</div>
</body>
</html>

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/818/viewspace-2816698/,如需轉載,請註明出處,否則將追究法律責任。

相關文章