横向滚动
2020-04-14 本文已影响0人
嵩鼠
*{
//如果底下布局没有效果 看看是否 touch-action 设置了none
touch-action: auto;
}
.father{
overflow-x: auto;
white-space: nowrap;
}
.son{
display: inline-block;
}
<div class="father">
<div class="son">
</div>
</div>
*{
//如果底下布局没有效果 看看是否 touch-action 设置了none
touch-action: auto;
}
.father{
overflow-x: auto;
white-space: nowrap;
}
.son{
display: inline-block;
}
<div class="father">
<div class="son">
</div>
</div>