html – 如何显示水平滚动条

前端之家收集整理的这篇文章主要介绍了html – 如何显示水平滚动条前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个div #items,它包含了很多.item.我希望并排显示项目,如果它们超出页面宽度,则显示水平滚动条.
<div id="somediv"></div>

<div id="items">
   <div class="item">
     Item content
   </div>
</div>

<div id="someotherdiv"></div>

我试过这样的东西,但它不起作用

#items{
   overflow: auto;
   width:100%;
   height:200px;       /* this is the height of each item*/ 
}
.item{
   float:left;      
}

我认为这是做到这一点的方法,但是我不能让这种方式起作用,所以我也愿意接受修正和其他方式.

解决方法

你是在正确的道路上,但你需要和额外的包装,使其工作……
<div id="scrollable">
<div id="items">
   <div class="item">
     Item content
   </div>
</div>
</div>

然后你的CSS:

#scrollable {
       overflow: auto;
       width:100%;
       height:200px; 
    }

   #items {
     width: 3000px; /* itemWidth x itemCount */
    }

  .item{
     float:left;      
  }
原文链接:https://www.f2er.com/html/242624.html

猜你在找的HTML相关文章