this is HTML
<p>x1</p> <p>x2</p>
and i want css to select first < p> then use " :after " selector :
p:nth-child(1):after{
content:"- X1 !";
}
what this should basically done is add " - X1 ! " after first < p>
but it doesnt work, how to do it ?
p:nth-child(1)does not mean "select the firstp". It means "select the first child inside the parent element if it's ap". What does your full HTML look like? – thirtydot Jun 11 '12 at 2:07