zoukankan      html  css  js  c++  java
  • 滚动条样式

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
        <style type="text/css">
        /*goolge chrome 滚动条*/
        ::-webkit-scrollbar-track-piece {   background-color:#CCC;}
        ::-webkit-scrollbar                {   13px;}
        ::-webkit-scrollbar-thumb        {   background-color:#999;}
        ::-webkit-scrollbar-thumb:hover {   background-color:#999;}
        ::-webkit-scrollbar-arrow         {   color:#000;   backgound:#0F0;}
        /* IE 滚动条*/
        .scrollbar                        {
                                            SCROLLBAR-ARROW-COLOR:#666666;
                                            SCROLLBAR-FACE-COLOR:#666666;
                                            SCROLLBAR-DARKSHADOW-COLOR:#CCCCCC;
                                            SCROLLBAR-HIGHLIGHT-COLOR:#CCCCCC;
                                            SCROLLBAR-3DLIGHT-COLOR:#CCCCCC;
                                            SCROLLBAR-SHADOW-COLOR:#CCCCCC;
                                            SCROLLBAR-TRACK-COLOR:#cccccc;    
                                        }
        </style>
    </head>
    <body>
        <form id="form1" runat="server">
            <div style=" height:300px; overflow:auto; " class="scrollbar">
                <div style=" height:200px; 100px; background:#000;"></div>
                <div style=" height:200px; 100px; background:#1d953f;"></div>
                <div style=" height:200px; 100px; background:#ef5b9c;"></div>
                <div style=" height:200px; 100px; background:#f47920;"></div>
            </div>    
        </form>
    </body>
    </html>

    效果如下:IE6和Chrome

  • 相关阅读:
    蓝牙低功耗(Bluetooth Low Energy)
    Android 蓝牙(概述)
    Android 学习笔记之 Activity 简介
    Android 学习笔记之常用控件
    Android 学习笔记之界面布局
    委托和事件(C#)
    Java 资源汇总
    如何阅读英文原版教材
    Combobox 控件绑定数据
    《将博客搬至CSDN》
  • 原文地址:https://www.cnblogs.com/challengesoflife/p/2821413.html
Copyright © 2011-2022 走看看