这确实需要是动态的,因为它将是一个框架解决方案,用于布置不同大小的div.父div将与示例类似.任何帮助都会很棒
#outer { wIDth: 90%; height: 90%; margin: 5%; overflow: auto; background-color: red;}.inner1 { float: left; wIDth: 150px; height: 150px; margin-right: 20px; background-color: blue;}.inner2 { float: left; wIDth: 150px; height: 150px; margin-right: 20px; background-color: blue;}.inner3 { float: left; wIDth: 150px; height: 150px; background-color: blue;}
<div ID="outer"> <div >1</div> <div >2</div> <div >3</div></div>@H_502_11@解决方法 您可以使用媒体查询来更改较小屏幕上的CSS.
#outer { wIDth: 90%; height: 90%; margin: 5%; overflow: auto; background-color: red;}.inner1 { float: left; wIDth: 150px; height: 150px; margin-right: 20px; background-color: blue;}.inner2 { float: left; wIDth: 150px; height: 150px; margin-right: 20px; background-color: blue;}.inner3 { float: left; wIDth: 150px; height: 150px; background-color: blue;}@media (max-wIDth: 435px) { #outer > div { margin-right:auto; margin-left:auto; margin-bottom:15px; float:none; }}
<div ID="outer"> <div >1</div> <div >2</div> <div >3</div></div>总结
以上是内存溢出为你收集整理的html – 包装它们之间有间隙的div全部内容,希望文章能够帮你解决html – 包装它们之间有间隙的div所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)