您好,登錄后才能下訂單哦!
這篇文章主要介紹“css3怎么隱藏滾動條”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“css3怎么隱藏滾動條”文章能幫助大家解決問題。
css3將滾動條隱藏的方法是,自定義滾動條的偽對象選擇器【::-webkit-scrollbar】,例如【.element::-webkit-scrollbar { width: 0 !important }】。
方法1:計算滾動條寬度并隱藏起來
只需要把滾動條通過定位把它隱藏起來即可。
<div class="outer-container"> <div class="inner-container"> ...... </div> </div>
.outer-container{ width: 360px; height: 200px; position: relative; overflow: hidden; }.inner-container{ position: absolute; left: 0; top: 0; right: -17px; bottom: 0; overflow-x: hidden; overflow-y: scroll; }
這個代碼巧妙的向右移動了17個像素,剛好等于滾動條的寬度。這個值是我手動調試得來的。在chrome和IE沒發現問題。
方法2:使用三個容器包圍起來,不需要計算滾動條的寬度
該代碼最早是在Microsoft博客上看到的,跟我上面的思路差不多,只不過人家里面又加多了一個盒子,將內容限制在盒子里面了。這樣子就看不到滾動條同時也可以滾動。 代碼如下:
<div class="outer-container"> <div class="inner-container"> <div class="content"> ...... </div> </div> </div>
.element, .outer-container { width: 200px; height: 200px; } .outer-container { border: 5px solid purple; position: relative; overflow: hidden; }.inner-container { position: absolute; left: 0; overflow-x: hidden; overflow-y: scroll; }.inner-container::-webkit-scrollbar { display: none; }
方法3:css隱藏滾動條
自定義滾動條的偽對象選擇器::-webkit-scrollbar。
.element::-webkit-scrollbar { width: 0 !important }
IE 10+
.element { -ms-overflow-style: none; }
Firefox
.element { overflow: -moz-scrollbars-none; }
關于“css3怎么隱藏滾動條”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。