CSS Selectors are patterns that match against elements in a document tree. In a CSS rule, they are used to define styles for elements that match the pattern.

learn more… | top users | synonyms

96
votes
11answers
76k views

Is there a CSS parent selector?

I would like to select the <li> element that is a parent (which immediately precedes the anchor tag, if that helps...) according to some attribute of the anchor tag. i.e. my CSS would be ...
91
votes
2answers
15k views

CSS Selectors parsed right to left. Why?

CSS Selectors are parsed by browser engines right to left. So they first find the children and then check their parents to see if they match the rest of the parts of the rule. Why is this? Is it ...
56
votes
9answers
41k views

Complex CSS selector for parent of active child

Is there a way to select a parent element based on the class of a child element in the class? The example that is relevant to me relating to HTML output by a nice menu plugin for http://drupal.org. ...
47
votes
4answers
47k views

CSS Selector for <input type=“?”

Is there any way with CSS to target all inputs based on their type? I have a disabled class I use on various disabled form elements, and I'm setting the background color for text boxes, but I don't ...
35
votes
3answers
11k views

CSS previous sibling selector

~ is for the next sibling. Is there an equivalent for the previous sibling? If there is not, a succinct no would suffice. :)
34
votes
9answers
45k views

using last-child in css

the below css doesnt works on below given html. The purpose is to apply the css on the last 'li', but it doesnt. #refundReasonMenu #nav li:last-child { border-bottom: 1px solid #b5b5b5; } and ...
29
votes
3answers
6k views

CSS Child vs Descendant selectors

I am a bit confused between these 2 selectors. Does the descendent selector: div p select all p within a div whether or not it's an immmediate descedent? So if the p is inside another div it will ...
21
votes
5answers
7k views

What does an Asterisk (*) do in a CSS selector?

I found this CSS code and I ran it to see what it does and it outlined EVERY element on the page, Can someone explain what the Asterisk * does in CSS? <style> * { outline: 2px dotted red } * ...
20
votes
1answer
108 views
+100

CSS attribute selector does not work a href

i need to use attribute selector in css to change link on different color and image. but it does not work i have html <a href="/manual.pdf">A PDF File</a> and css a { display: ...
19
votes
6answers
434 views

IE7 ignores CSS attribute selector only on pages coming from production server

On my website, IE7 seems to be ignoring certain CSS attribute selectors. The strange thing is that it only happens when the page comes from the production server. If I have the exact same code on my ...
16
votes
3answers
9k views

Use double classes in IE6 CSS?

is there any way to make IE6 understand double classes, say I have a class MenuButton with a color class and possibly a clicked class; like : .LeftContent a.MenuButton {..general rules..} ...
14
votes
5answers
2k views

How is the angle bracket character, “>” used in CSS?

I have seen this character a number of times in CSS files but I have no idea how its used. Can anyone explain it to me and show how they are useful in making a page style easier?
14
votes
6answers
14k views

Css: apply style to first level of TD only

Is there a way to apply a Class' style to only ONE level of td tags? <style>.MyClass td {border: solid 1px red;}</style> <table class="MyClass"> <tr> <td> ...
14
votes
8answers
5k views

PHP CSS Selector Library?

Is there a PHP class/library that would allow me to query an XHTML document with CSS selectors? I need to scrape some pages for data that is very easily accessible if I could somehow use CSS selectors ...
13
votes
3answers
2k views

:nth-of-type() in jQuery / Sizzle?

It surprised me that Sizzle (the selector engine jQuery uses) comes with a built-in :nth-child() selector, but lacks an :nth-of-type() selector. To illustrate the difference between :nth-child() and ...
13
votes
2answers
2k views

Can you target an element with CSS only if 2 classes are present?

As you probably already know, you may have multiple classes on elements separated by a space. Example <div class="content main"></div> And with CSS you can target that div with ...
11
votes
3answers
2k views

Select every Nth element in CSS

Is it possible to select, say, every fourth element in a set of elements? Ex: I have 16 <div> elements... I could write something like. div:nth-child(4), div:nth-child(8), div:nth-child(12), ...
11
votes
8answers
9k views

In CSS what is the difference between “.” and “#” when declaring a set of styles?

What is the difference between "#" and "." when declaring a set of styles for a particular element? Here are two examples. .selector { background-color:red; property:value; } #selector { ...
11
votes
4answers
16k views

How to style <input type=“text”> in IE6 CSS?

Is there any elegant way of applying a certain style to all <input type="text"> elements under IE6? I can do it with some JavaScript, but I was wondering if there was a more elegant way of doing ...
10
votes
1answer
101 views

Why do 'foo bar' and 'foo > bar' have the same specificity in CSS?

I'm curious why using > or other combinators does not affect the specificity of CSS selectors, i.e. why div span (matching a span somewhere inside a div) and div > span (matching a span which is ...
10
votes
3answers
158 views

CSS Selector “(A or B) and C”?

This should be simple, but I'm having trouble finding the search terms for it. Let's say I have this: <div class="a c">Foo</div> <div class="b c">Bar</div> In CSS, how can I ...
10
votes
1answer
3k views

CSS Selector for label bound to input

Is there a way in CSS to select labels bound to input fields (via the for attribute) having the required attribute set? Something like: label:input[required] { ... } Currently, I'm adding ...
10
votes
4answers
6k views

CSS 3 content selector?

I am looking for a CSS selector for the following table: Peter | male | 34 Susanne | female | 12 Is there any selector to match all TDs containing "male" ?
9
votes
2answers
136 views

Tool for checking unused CSS selectors?

I have read some answers on Stack Overflow about this topic. I know there is an extension called Dust-Me Selectors for Firefox and also that it doesn't look at dynamic HTML generated by JavaScript. ...
9
votes
2answers
6k views

CSS get second child

I have a table and the TD's are created dynamically. I know how to get the first and last child but my question is, Is there a way of getting the second or third child using CSS?
9
votes
6answers
280 views

Which CSS Selector is better practice? [closed]

I am wondering which selector is better practice and why? Sample HTML Code <div class="main"> <div class="category"> <div class="product"> </div> ...
9
votes
3answers
533 views

CSS combinator precedence?

Is there a precedence to combinators like a > b ~ c d (Note the space between c and d is the descendant combinator) Or is it just read left-to-right, like ((a > b) ~ c) d ?
9
votes
5answers
180 views

Why is the # selector of lesser specificity than anything?

Big bold caps-lock TL;DR: I KNOW HOW SELECTOR SPECIFICITY IS DETERMINED, I THINK IT USES FLAWED ASSUMPTIONS AND I CAN BACK MY IRRITATIONS UP WITH VALID SET THEORY RELATIONS, PLEASE DO NOT RESPOND ...
9
votes
4answers
620 views

What does “>” mean in CSS rules?

For example: What does this select? div > p.some_class { ... }
9
votes
10answers
1k views

Is there an addon which you can test css selectors in firefox?

I was wondering if there is such an addon in firefox where you can test out css paths to check if they are finding the correct element? I was looking for something similar to xpather for xpath ...
9
votes
3answers
2k views

A that followed by B CSS selector?

i need selector for selecting A element that directly followed by B element <style> /* B that directly preceded by A*/ A+B { } /* what the selector for selecting A that ...
9
votes
5answers
26k views

How to Target IE7 IE8 with CSS valid code.?

I want to Target with CSS valid code. to IE7 and IE8, Please Give me some Information about this Issue and CSS code should be W3C Valid. IE8 is here. Some time we fix for IE7 but not work in IE8.
8
votes
1answer
117 views

Differences in query algorithms between XPath and CSS

I'm wondering why someone would want to use CSS selectors rather than XPath selectors, or vice-versa, if he could use either one. I think that understanding the algorithms that process the languages ...
8
votes
2answers
75 views

What is the difference between a pseudo-class and a pseudo-element in CSS?

Things like a:link or div::after... Information on the difference seems scarce.
8
votes
1answer
399 views

Why doesn't table > tr > td with child selectors work?

I can't really get why the following selector works as expected (i.e. get the td): table tr td but this one doesn't: table > tr > td The td is a descendant of tr, which in turn is a ...
8
votes
2answers
583 views

Can I make the CSS :after pseudo element append content outside the element?

I want to format a breadcrumb trail of links using an HTML &raquo; entity between adjacent links, so it looks like this: home » about us » history » this page I've added a rule ...
8
votes
3answers
563 views

Use CSS selectors to collect HTML elements from a streaming parser (e.g. SAX stream)

How to parse CSS (CSS3) selector and use it (in jQuery-like way) to collect HTML elements not from DOM (from tree structure), but from stream (e.g. SAX), i.e. using sequential access event based ...
8
votes
3answers
190 views

CSS - What is the meaning of this selector

<div class="alert error"> <p class="denied">adfafdadfadsf</p> </div> div.alert.error { background:url("v3.png") no-repeat scroll 7px -643px #FFEEEE; } Does the ...
8
votes
5answers
697 views

What does > in CSS mean?

In the IUI css file, they use the following selectors: body > *:not(.toolbar) body > *[selected="true"] What does the >, *:not() and *[] mean? Thanks.
8
votes
4answers
4k views

How can I count the number of elements that match my CSS selector?

I am trying to use SeleniumRC to test my GWT App and am trying to match elements using CSS selectors. I want to count the number of enabled buttons in the following HTML. A button is enabled if it ...
8
votes
4answers
6k views

CSS - Syntax to select a class within an id

What is the selector syntax to select a tag within an id via the class name? For example, what do I need to select below in order to make the inner "li" turn red? <html> <head> ...
8
votes
1answer
4k views

CSS selector for targeting only immediate children and not other identical descendants

I have nested sortable list that can have items dynamically added or removed and can be nested n-levels deep. On nesting, a new ul element is injected into whatever li element is selected to be the ...
7
votes
1answer
88 views

CSS: #id .class VS .class performance. Which is better?

I'd assume that this would be faster: #dialog .videoContainer { width:100px; } than: .videoContainer { width:100px; } Of course disregarding that .videoContainer in the first example would only ...
7
votes
2answers
153 views

CSS attribute selector + descendant gives a bug in Webkit?

Consider this CSS: [data-color="red"] h1 { background-color:red; } [data-color="blue"] h1 { background-color:blue; } And this HTML: <div data-color="red"> <h1>red</h1> ...
7
votes
3answers
237 views

Using contextual styling on table to apply dotted borders to specific cells

I had previously asked a question on this issue, to which you guys supplied fantastic answers. I since "discovered" the intoxicating power of contextual styling ...
7
votes
2answers
266 views

hide border if there is no content

On a div I have css set: div.class {border: 1px solid red;} The div is positioned absolutely in the center of the page. The problem is that the border appears even if there is no content. Any css ...
7
votes
1answer
2k views

Select elements by data attribute in CSS

Is it possible to select elements in CSS by their HTML5 data attributes (for example, data-role)?
7
votes
3answers
206 views

Why was ::selection removed from the CSS Selectors spec, and how does its specificity work against type selectors?

Some questions about using CSS to specify the color of selected text: https://developer.mozilla.org/En/CSS/::selection says that, ::selection was drafted for CSS3 Selectors but removed from ...
7
votes
3answers
198 views

CSS and jQuery Selector Speed

In jQuery whenever I encounter something like this: $("div#MyDiv")..... I generally say to the developer: "Don't bother putting the div in front of #MyDiv, ID selectors are the fastest." I.e. ...
7
votes
1answer
378 views

CSS Selector that applies to elements with two classes

Is there a way to select an element with CSS based on the value of the class attribute being set to two specific classes. For example, let's say I have 3 divs: <div class="foo">Hello ...

1 2 3 4 5 23