Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to "inspect element" on scrollbar?

With webkit, it is possible to modify scrollbar styles. However, i cannot "inspect element" on scrollbar when debugging in chrome. Is there any workaround for this?

like image 329
hendrix Avatar asked Aug 07 '13 09:08

hendrix


People also ask

What is the HTML code for a scroll bar?

By using the <Style> tag, we will add the scroll options in HTML Page itself.


1 Answers

The scrollbar is part of the body element, you will not be able to 'inspect' a non-HTML element.

To see CSS styles applied to scrollbar, just inspect element that scrollbar belongs to.

like image 76
Samuel Liew Avatar answered Sep 18 '22 09:09

Samuel Liew