欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

css中float属性的影响

程序员文章站 2022-04-25 11:20:23
...

        <div style="width: 400px;background: gray;" id="">
			<div style="width: 100px;height: 100px;background: black;" id="">
				
			</div>
		</div>

css中float属性的影响

 

		<div style="width: 400px;background: gray;" id="">
			<div style="float:left;width: 100px;height: 100px;background: black;" id="">
				
			</div>
		</div>

css中float属性的影响

 

		<div style="float:left;width: 400px;background: gray;" id="">
			<div style="float:left;width: 100px;height: 100px;background: black;" id="">
				
			</div>
		</div>

css中float属性的影响