就是
<div>
<div style="float:left;"></div>
<div style="float:left;"></div>
<div style="float:left;">
<div style="float:left;"></div>
<div style="float:left;"></div>
<div style="float:left;"></div>这个div向下对齐
</div>
</div>
div
------解决方案--------------------
方法一:每个div就是自动向下排的,使用float:left他们就会从左向右排,在宽度允许的情况下,否则就会向下排,你可以设置他们的宽度说不定就向下排了。但是宽度你得设定的好。
方法二:你可以把最后一个想要向下排的div用定位来写。用一个选择器{position:relative;left:0px;top:这个你要距离上面多高自己定}。这个方法是绝大多时候能排上用场的。
普科国际留、
------解决方案--------------------
positon:absolute
bottom:0 //下吸附