我在 100%w 容器中有 4 个内联块。当我调整浏览器的大小以溢出此容器时,添加浏览器会在底部添加新行,但我希望将新行放在顶部,有什么办法吗?
**Full browser width:**
*** *** *** ***
*1* *2* *3* *4*
*** *** *** ***
**Overflow**
Doing this:
*** *** ***
*1* *2* *3*
*** *** ***
***
*4*
***
I want this:
***
*4*
***
*** *** ***
*1* *2* *3*
*** *** ***
这是我的代码:
HTML
<div class="cajonera">
<nav class="contenedorWidgets">
<ul>
<li>image1</li><li>image2</li><li>image3</li><li>image4</li>
</ul>
</nav>
</div>
CSS
.cajonera{
width: 100%;
height: 100%;
background-color: #040404;
position: absolute;
}
.contenedorWidgets{
position: absolute;
bottom:63px;
margin: 0 auto;
width: 100%;
}
.contenedorWidgets ul{
padding: 0;
margin:0;
list-style-type: none;
list-style: none;
}
.contenedorWidgets ul>li {
list-style: none;
margin-left: -4px;
text-align: center;
}
谢谢 :)