火狐自定義滾動條css具有一定的技術(shù)難度,但是它可以讓我們的網(wǎng)頁更加美觀、實用。下面是一些實用的滾動條樣式示例:
/*縱向滾動條*/ ::-webkit-scrollbar { width: 10px; height: 100px; } /*滾動塊*/ ::-webkit-scrollbar-thumb { background: #c9c9c9; border-radius: 8px; border: none; } /*滑動軌道*/ ::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 8px; border: none; } /*鼠標(biāo)移到滾動塊上的樣式*/ ::-webkit-scrollbar-thumb:hover { background: #555; } /*水平滾動條*/ ::-webkit-scrollbar:horizontal { height: 10px; width: 100px; } /*右側(cè)下方按鈕*/ ::-webkit-scrollbar-button { display: none; } /*四周角的樣式*/ ::-webkit-scrollbar-corner { background: #f1f1f1; }
使用上述樣式,我們可以讓我們的滾動條更加美觀,并且可以自定義不同的滾動條樣式。當(dāng)然,我們需要根據(jù)實際需求來選擇適合自己的樣式。