Remove scrollbars using CSS
Hi, I am trying to make a website. The issue is that my website uses scroll. When using Linux or Windows 10 with FireFox, the scroll bars are there and they look terrible. Is there a way to remove the scroll bars using CSS since I am making a website and that would be the most convenient way?
การตอบกลับทั้งหมด (1)
hi, chrome edge and safari use -webkit-scrollbar Firefox requires CSS scrollbar.
an example:
/* Hide scrollbar for Chrome, Edge, Safari and Opera */
.example::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, and Firefox */ .example {
-ms-overflow-style: none; /* IE*/ scrollbar-width: none; /* Firefox */
}
เปลี่ยนแปลงโดย Mick เมื่อ