Top "Css-selectors" questions

Selectors are patterns that match against elements in a document tree.

Is there a CSS not equals selector?

Is there something like != (not equal) in CSS? e.g, I have the following code: input { ... ... } but for some inputs …

html css css-selectors
Using querySelectorAll to retrieve direct children

I am able to do this: <div id="myDiv"> <div class="foo"></div> </…

javascript dom css-selectors
Can I use CSS to add a bullet point to any element?

Pretty simple question, but I am not sure if it is possible. I want to add an image to act …

html css css-selectors html-lists listitem
CSS Animations with delay for each child element

I am trying to create a cascading effect by applying an animation to each child element. I was wondering if …

animation css delay css-selectors
CSS Selector for selecting an element that comes BEFORE another element?

I'm working on a login page for my website and I want to bold the label that comes before the …

css css-selectors
CSS selector by inline style attribute

Is there a CSS selector to select this element by its inline style attribute value? <div style='display:block'&…

html css css-selectors inline-styles
How to select an element that has focus on it with jQuery

How can you select an element that has current focus? There is no :focus filter in jQuery, that is why …

jquery focus css-selectors
CSS: How to say .class:last-of-type [classes, not elements!]

Possible Duplicate: How do I select the “last child” with a specific class name in CSS? As the title says, …

css css-selectors
Does CSS have a :blur selector (pseudo-class)?

I know there is a :focus selector. I can't seem to find use of or documentation of a :blur selector. …

css css-selectors pseudo-class
CSS nth-child for greater than and less than

In my HTML I have, <div class="container"> </div> <div class="container"> </div&…

html css css-selectors