html – DIV水平滚动

前端之家收集整理的这篇文章主要介绍了html – DIV水平滚动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在div中有几个 HTML元素,具有固定宽度.内部元素的宽度之和大于容器的宽度.如何使内部元素显示为内嵌(并显示水平滚动),而不是在达到父级宽度后中断?

我可以添加一个包装器并为其指定一个最小宽度,但是如果内容发生变化,我想要一些会改变其大小的东西.

<div id="container">
    <div class="contents" id="one"></div>
    <div class="contents" id="two"></div>
    <div class="contents" id="three"></div>
    <div class="contents" id="four"></div>
</div>

#container {
    width: 100px;
    background-color: #CCC;
    overflow: auto;
    height: 100px;
}

.contents {
    width: 35px;
    height: 60px;
    float: left;
}
#one {
    background-color:#ABC;
}
#two {
    background-color:#333;
}
#three {
    background-color:#888;
}
#four {
    background-color:#AAA;
}

http://jsfiddle.net/elohr/G5YZ6/2/

谢谢!

解决方法

使用display:inline-block而不是float:left,并添加white-space:nowrap;到容器.如果需要,请在内容元素中添加white-space:normal. Demo
原文链接:https://www.f2er.com/html/228428.html

猜你在找的HTML相关文章