For example, I want a CSS selector for all div
elements which have a CSS overflow:auto;
property. Is it possible to have a selector of that kind?
Note that style="overflow:auto;"
will match divs which has exact that CSS (string). If you want to select divs that contains overflow:auto
along with some other css, you can use *
selector.
div[style*="overflow:auto;"]{
background-color: #f00;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With