Is there a CSS selector to exclude 'display: none' from an element by its inline style attribute value? So i need to write a css selector where 'display: none' is not present.
<div style = "position: absolute; top: 12px; left: 84px; display: none;">
Looking for something like below:
div[not:style * = 'display: none']
OR
div:not[style*='display: none']