css強制隱藏瀏覽器捲軸方法

來源:互聯網
上載者:User

強制顯示捲軸:

 代碼如下 複製代碼

html { overflow: scroll; }

強制隱藏捲軸:

 代碼如下 複製代碼

html { overflow: hidden; }

隱藏IE的水平捲軸:

 代碼如下 複製代碼

html { overflow-x: hidden; }

隱藏IE的垂直捲軸:

 代碼如下 複製代碼

html { overflow-y: hidden; }

強制顯示IE的水平捲軸:

 代碼如下 複製代碼

html { overflow-x: scroll; }

強制顯示IE的垂直捲軸:

 代碼如下 複製代碼

html { overflow-y: scroll; }

強制顯示Mozilla的水平捲軸:

 代碼如下 複製代碼

html { overflow:-moz-scrollbars-horizontal; }

注意: 僅僅強制顯示水平捲軸. 也就是說, 即使需要顯示垂直捲軸時, 垂直捲軸也不會出現.

強制顯示Mozilla的垂直捲軸:

 代碼如下 複製代碼

html { overflow:-moz-scrollbars-vertical; }

注意: 僅僅強制顯示垂直捲軸. 也就是說, 即使需要顯示水平捲軸時, 水平捲軸也不會出現.

這麼多我們都會有注意到一個html這個,所有的隱藏瀏覽器滾動的我們都利用了html屬於來定義了。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.