html – CSS white-space nowrap无法正常工作

前端之家收集整理的这篇文章主要介绍了html – CSS white-space nowrap无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个div,有几个子div,左边是浮动的.我不希望它们中断,所以我将它们设置为显示:inline-block和white-space:nowrap.遗憾的是一切都没有发生.他们只是一直在打破.

最后我想在x方向滚动,但是当我添加overflow-x:scroll; overflow-y:可见它在y方向滚动.

.a {
    width: 400px;
    height: 300px;
    white-space: nowrap;
    display: inline-block;
}
.b {
    float: left;
    width: 50px;
    height: 200px;
    display: inline-block;
}

<div class="a">
    <div class="b"></div>
    <div class="b"></div>
    <div class="b"></div>
    <div class="clearfix"></div>
</div>

你可以看到my complete implementation on JSFiddle

解决方法

我可能不完全理解你的问题,但如果你删除它似乎divs / scroll表现:float:left;来自.b并添加:overflow:auto;到.a
原文链接:https://www.f2er.com/html/227812.html

猜你在找的HTML相关文章