【html】设置元素浮动之后第二行的div块为什么不自动向上浮动呢??
如图,下面那张图按道理应该向上,显示在红色的区域中,我把margin都设置为0了,可是还是不上去,求大侠指点是什么原因...
如图,下面那张图按道理应该向上,显示在红色的区域中,我把margin都设置为0了,可是还是不上去,求大侠指点是什么原因
展开
展开全部
按道理它也不是会向上的。
例子:你浮动中,有一个为250高的,那么那一排就按250来,而且,向左浮动的意思,只是说紧跟着上一个,如果像你所说的,向上了,那它就不止浮云这么简单了,那就叫错位了。
比如:
<div>1</div><div>2</div><div>3</div><div>4</div><div>5</div>,不管1234的高是多少,即使都合适不换行,那5也是跟在4后面,它是不会插到1下面或者2后面。。。
你想做瀑布流布局,,,可以直接用JQ的瀑布流插件,或者网上搜索有现成的例子。纯CSS的话,呼,只能通过定位来做,而且不方便。
可以试试CSS3
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>CSS3瀑布布局</title>
<style>
.container{
-webkit-column-width:160px;
-moz-column-width:160px;
-o-colum-width:160px;
-webkit-column-gap:1px;
-moz-column-gap:1px;
-o-column-gap:1px;
}
div:not(.container){
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
background:#D9D9D9;
border::#CCC 1px solid;
display:inline-block;
width:157px;
position:relative;
margin:2px;
}
.title{
line-height:80px; font-size:18px; color:#900;
text-align:center;
font-family:"Microsoft YaHei";
}
</style>
</head>
<body>
<section>
<div class="container">
<div style="height:80px" class="title">纯CSS3瀑布布局</div>
<div style="height:260px"></div>
<div style="height:65px"></div>
<div style="height:120px"></div>
<div style="height:145px"></div>
<div style="height:90px"></div>
<div style="height:145px"></div>
<div style="height:160px"></div>
<div style="height:65px"></div>
<div style="height:230px"></div>
<div style="height:140px"></div>
<div style="height:85px"></div>
<div style="height:20px"></div>
<div style="height:145px"></div>
<div style="height:50px"></div>
<div style="height:65px"></div>
<div style="height:230px"></div>
<div style="height:140px"></div>
<div style="height:85px"></div>
<div style="height:20px"></div>
<div style="height:145px"></div>
<div style="height:50px"></div>
<div style="height:145px"></div>
<div style="height:160px"></div>
<div style="height:240px"></div>
</div>
</section>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询