我想滾動水平滾動時有很多article
,而不是讓他們跳下去。所以我希望它能夠滾動,以便您可以看到其餘的內容。但它不起作用。HTML CSS水平滾動
段:
#latest {
background: #eee;
border-bottom: 1px solid #ccc;
border-top: 1px solid #ccc;
overflow-x: scroll;
overflow-y: hidden;
height: 150px
}
article {
width: 250px;
height: 150px;
background: #ccc;
margin-right: 30px;
float: left
}
<div id="latest">
<div id="wrapper">
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
</div>
</div>
究竟不起作用怎麼辦呢?你可以在[JSFiddle](http://jsfiddle.net/)上向我們展示一個例子嗎? –
#latest沒有列出滾動的文章 – sfsefsf33fs3fs3fs