代码如下:
<div class="nowrap">
<div class="item-t"></div>
<div class="item-t"></div>
<div class="item-t"></div>
<div class="item-t"></div>
</div>
css样式:
.nowrap{
white-space: nowrap;
overflow-x: scroll;
height: 200px;
}
.item-t{
display: inline;
float: left;
width: 108px;
height: 200px;
background: yellow;
vertical-align: top;
}
.item-t+.item-t{
margin-left: 15px;
}
以上div还是会换行,并且只显示纵向滚动条。
求大神解答!!!
李晓健