设置父级div里的元素强制不换行,滚动处理
同级div设置display:inline-block,父级div强制不换行
<html>
<head></head>
<body>
<div id="container">
<div class="lable">测试测试</div>
<div class="lable">测试测试</div>
<div class="lable">测试测试</div>
<div class="lable">测试测试</div>
<div class="lable">测试测试</div>
<div>
</body>
<style>
#container {
width:400px;
height: 200px;
background-color: red;
overflow: auto;
white-space: nowrap;
}
.lable {
width: 100px;
background-color: blue;
display: inline-block;
}
</style>
</html>
阅读剩余
版权声明:
作者:贰狗
链接:https://www.bp456.cn/72.html
文章版权归作者所有,未经允许请勿转载。
THE END