码迷,mamicode.com
首页 > Web开发 > 详细

html/css/js-横向滚动条的实现

时间:2018-08-22 12:41:26      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:ima   htm   char   ace   title   就是   图片   感悟   doc   

     在前端UI设计时,网页的制作很麻烦,深有感悟!碰到太多的不懂,或是第一次见,就要去网上找资料!横向滚动条就是我遇到麻烦中其中的一个,其实也 很简单,只是在几次项目中都用到了这个横向滚动条所以就拿出来说一下。

需求界面---如下图:技术分享图片     就是一个div里面放很多button,超出div宽度,下方出现横向滚动条。实际情况中,肯定不止几个button,它是可以动态的添加进去,所以父div的宽度肯定不够,但界面的位置排版又有要求,所以不得不弄一个横向滚动条。

   代码如下:

        <!doctype html>
    <html>
    <head>
       <meta charset="utf-8">
        <title>进入分区</title>
       </head>
    <body>
      <div style="height:60px;
                     overflow-x:scroll;
                     white-space:nowrap;
                     width:500px;">
                       <button style="height:38px;
                        margin-top:2px;">1号分区</button>
        <button style="height:38px;
                          margin-top:2px;">2号分区</button>
        <button style="height:38px;
                          margin-top:2px;">3号分区</button>
        <button style="height:38px;
                          margin-top:2px;">4号分区</button>
                <button style="height:38px;
                             margin-top:2px;">5号分区</button>
         <button style="height:38px;
                          margin-top:2px;">6号分区</button>
            <button style="height:38px;
                          margin-top:2px;">7号分区</button>
          <button style="height:38px;
                            margin-top:2px;">8号分区</button>
      </div>
      </body>
    </html>

html/css/js-横向滚动条的实现

标签:ima   htm   char   ace   title   就是   图片   感悟   doc   

原文地址:https://www.cnblogs.com/zuoluwo/p/9516880.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!