css3 - 關于滾動條的CSS如何設置問題
問題描述
<p id=’p3’ style=’width:200px;height:200px;overflow:auto;’>This is some text. This is some text. This is some text. This is some text.This is some text. This is some text. This is some text. This is some text.This is some text. This is some text. This is some text. This is some text.This is some text. This is some text. This is some text. This is some text.This is some text. This is some text. This is some text. This is some text.This is some text. This is some text. This is some text. This is some text.This is some text. This is some text. This is some text. This is some text.This is some text. This is some text. This is some text. This is some text. </p>
就像上面代碼 p里面有一段文字,我設置了overflow:auto;也就是超出部分顯示滾動條,那么我如何修改這個滾動條的樣式呢?
問題解答
回答1:一個針對Webkit內核瀏覽器的滾動條美化的例子,不知道是不是你想要的
/* 滾動條部分 */::-webkit-scrollbar { width:15px;}/* 軌道 */::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); -webkit-border-radius: 15px; border-radius: 15px;}/* 手柄 */::-webkit-scrollbar-thumb { -webkit-border-radius: 15px; border-radius: 15px; background:rgba(200,200,200,0.7); -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); }/* 手柄激活態 */::-webkit-scrollbar-thumb:window-inactive { background: rgba(200,200,200,0.4); }回答2:
那就定義瀏覽器滾動條樣式即可,兩者是一致的,如果需要不一樣,那就需要模擬滾動條
回答3:推薦你參考這篇文章:http://www.qianduan.net/css-custom-scroll-bar-style/作者是微信團隊的神飛,寫的文章一直很不錯!
回答4:話說滾動更改滾動條樣式。為什么pc端可以正常顯示。手機端就不行了呢
相關文章:
1. docker images顯示的鏡像過多,狗眼被亮瞎了,怎么辦?2. 大家好,請問在python腳本中怎么用virtualenv激活指定的環境?3. 網頁爬蟲 - 用Python3的requests庫模擬登陸Bilibili總是提示驗證碼錯誤怎么辦?4. javascript - 關于audio標簽暫停的問題5. android - QQ物聯,視頻通話6. Matlab和Python編程相似嗎,有兩種都學過的人可以說說嗎7. javascript - 微信小程序封裝定位問題(封裝異步并可能多次請求)8. javascript - Web微信聊天輸入框解決方案9. mysql - 怎么讓 SELECT 1+null 等于 110. 請教各位大佬,瀏覽器點 提交實例為什么沒有反應
