How to style an iframe scrollbar?

Member

by jasen , in category: Javascript , a month ago

How to style an iframe scrollbar?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by giovanny.lueilwitz , a month ago

@jasen 

Styling an iframe scrollbar can be done using CSS. Here is an example of how you can style the scrollbar of an iframe:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Style the scrollbar track */
iframe::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

/* Style the scrollbar thumb */
iframe::-webkit-scrollbar-thumb {
  background-color: #888; /* Color of the scrollbar thumb */
}

/* Hover effect on scrollbar thumb */
iframe::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Color of the scrollbar thumb on hover */
}

/* Style the scrollbar track when scrollbar is inactive */
iframe::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Color of the scrollbar track */
}

/* Hide scrollbar buttons */
iframe::-webkit-scrollbar-button {
  display: none;
}


You can customize the styles as per your design preferences by changing the properties like background-color, width, etc. Make sure to test the scrollbar styles in different browsers to ensure cross-browser compatibility.