Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I check this selector:

h3:nth-child(1):contains('a') 

selector doesn't work?

I check this in firefinder and does return nothing (not info that there is zero elements)

Then check this:

h3:nth-child(1)

and it returns h3, so selector is almost good, but something with this(h3 has text 'a') text goes wrong.

share|improve this question

2 Answers

up vote 15 down vote accepted

:contains() is not was going to be a CSS3 selector (thanks T.J. Crowder for the link), but due to unknown reasons it didn't make it.

There is no other CSS selector that serves a purpose like :contains(). So you'll have to find some other way, either by modifying your HTML or even by using jQuery's :contains(), to achieve the effect you want:

Select an h3 element
if it is the first child of its parent
and its text contains the letter 'a'.

For jQuery and Selenium RC users: :contains() is implemented in the Sizzle selector engine used by jQuery, which is also used in Selenium RC (but not Selenium WebDriver). It works as described in this decade-old revision of the CSS3 spec.

On a final note, h3:nth-child(1) can be replaced with h3:first-child, which as a CSS2 selector has better browser support.

share|improve this answer
Indeed. It was going to be defined (there's even a section in the CSS3 spec for it, Section 6.6.6), but it wasn't. – T.J. Crowder Jan 24 '11 at 10:58
This section intentionally left blank. (This section previously defined a :contains() pseudo-class.) Does that mean that the W3C took :contains out of the CSS3 spec? w3.org/TR/css3-selectors – Russell Dias Jan 24 '11 at 10:58
@T.J. Crowder Thats what I needed! Thanks – Russell Dias Jan 24 '11 at 10:59
2  
@T.J. Crowder: Section 6.6.6? That explains... – BoltClock Jan 24 '11 at 11:00
Yeah, I thought that was funny too... – T.J. Crowder Jan 24 '11 at 11:01

If you're trying to use :contains(a) to find an anchor tag (rather than the letter A), you could use:

h3:nth-child(1) a

or

h3:first-child a
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.