久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      css怎么設(shè)置滾動條透明

      css設(shè)置滾動條透明的方法是,給滾動條添加樣式【::-webkit-scrollbar {height: 0;width: 0;color: transparent;}】就可以了。

      css怎么設(shè)置滾動條透明

      本文操作環(huán)境:windows10系統(tǒng)、css 3、thinkpad t480電腦。

      我們可以通過設(shè)置如下樣式來實現(xiàn)滾動條透明效果:

      ::-webkit-scrollbar {   height: 0;   width: 0;   color: transparent; }

      自定義滾動條高度和顏色

      /*定義滾動條樣式(高寬及背景)*/ ::-webkit-scrollbar {     width: 6px;   /* 滾動條寬度, width:對應(yīng)豎滾動條的寬度  height:對應(yīng)橫滾動條的高度*/     background: #007acc; } /*定義滾動條軌道(凹槽)樣式*/ ::-webkit-scrollbar-track {     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);    /* 較少使用 */     border-radius: 3px; } /*定義滑塊 樣式*/ ::-webkit-scrollbar-thumb {     border-radius: 3px;     height: 100px;    /* 滾動條滑塊長度 */     background-color: #ccc; }

      學(xué)習(xí)視頻分享:css視頻教程

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號