如何使页面上水平滚动(How to make horizontal scroll on page)

2019-08-02 17:38发布

我已经div的其中配置在内的div我需要让所有内部的div的线和水平滚动条应该显示(我知道这听起来很疯狂,但我需要)。 我试图容器宽度自动和溢出滚动,但没有。

如何实现这一目标?

我的标记:

   <!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <title>text-overflow</title>
  <style>
  body{
    width: auto;
  }
  #items{
  overflow-x: scroll;
  width: auto;
  }
  .item{
     display: inline-block;
     width: 400px;
     height: 100px;
     border:1px solid;
  }
  </style>
 </head>
 <body>

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

 </body>
</html>

Answer 1:

使用white-space: nowrap;#items

#items{
    overflow-x: scroll;
    width: auto;
    white-space: nowrap;
}

DEMO



Answer 2:

简单地给#items高度和溢出-X:自动。

#items{
      overflow-x: auto;
      width: auto;
       height: 200px;
      }


Answer 3:

<div style="overflow-x:scroll;">
  <div style="width:1600px;">
    <div style="width:1500px;">
      <table>
        <tr>
          <td> your value <td>
        </tr>
      </table
    </div>
  </div>
</div>


文章来源: How to make horizontal scroll on page