Cách tạo màu cho thanh cuộn (Scrollbar)

Cách tạo màu cho thanh cuộn (Scrollbar)

MetaVerified member

Administrative

Staff member
Reputation: 100%
Last seen
Viewing forum eMagazine
Joined
Dec 14, 2024
Messages
6,504
Kara
82,004K
Points
3,440
1735999586857.webp


để đổi màu thanh cuộn như diễn đàn ta làm như sau
thêm code vào cuối extra.less

CSS:
/* Đổi mau thanh cuon */
html {
    scrollbar-color: #9C4B00 #151515; /* mau nut va mau nen scrollbar */
}
::-webkit-scrollbar {
    width: 13px;
    height: 13px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
::-webkit-scrollbar-thumb {
    background: #9C4B00; /* Couleur du bouton */
    border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9C4B00; /* mau bouton */
}
::-webkit-scrollbar-thumb:active {
    background: #9C4B00; /* mau bouton */
}
::-webkit-scrollbar-track {
    background: #151515; /* mau nen scrollbar */
    border: 0px none #ffffff;
    border-radius: 13px;
}
/* End of /* Đổi mau thanh cuon */ */
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Similar threads Most view View more

Thread starter

MetaVerified member

Staff member
Reputation: 100%
Administrative
Joined

Thread Information

Title
Cách tạo màu cho thanh cuộn (Scrollbar)
Prefix
N/A
Forum
Xenforo Miễn phí
Start date
Last reply date
Replies
0

Thread Tags

Tags Tags
None
Back
Top Bottom