Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I would like to target and modify the <label> tag only when is next to a input[type=radio], no in any other cirscuntances.

My code looks like this:

<fieldset>
  <legend>Some legend</legend>
  <p>Some explanation</p>
  <label>
   <input type="radio" name="#{name}" value="#{value}" />
  </label>
</fieldset>

I tryied with fieldset label:first-child+input[type=radio]{} but doenst work, if someone can help me would be awesome.

EDIT: What I want is to be able to style only the LABEL tag no the RADIO button INPUT tag, and this style will apply only when <label><input type="radio"></label> structure is found.

share|improve this question
2  
Your label is not next to your input. Your input is inside your label. – Rocket Hazmat Oct 23 '12 at 15:05

1 Answer

up vote 3 down vote accepted

What you are asking for is not possible in CSS. It is not possible to traverse "back" or "up" the DOM tree (so you can't target previous siblings or parent nodes).

See this post: Is there a CSS parent selector?

share|improve this answer
thanks for the tip, I will take a different approach – nahum Oct 23 '12 at 15:10

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.