DIV超出长度后不换行,横向滚动

这里只写出css样式,高度宽度浮动都是次要
父DIV:

.fatherBar{
width: 1920px;
height: 216px;
float: left;
overflow-y: hidden;
overflow-x: auto;
white-space: nowrap;
}

子DIV:

.childrenBar{
width: 384px;
height: 216px; 
position: relative;
display: inline-block;
}

你可能感兴趣的:(H5+JS+CSS,css小技巧)