Forum Moderators: not2easy
I have assigned a class to a paragraph ie
p.red {color: red;}
<p class="red"> This text should be red</p>
No luck
I then tried to assign the selector to a div tag ie
#red p {
color: #ff0000;
font-style: regular;
font-family: verdana;
font-size: 7.5pt
}
<div id="red"><p>This text should be red</p></div>
Does not work FF or IE and no, the selector has not been allocated to any other rule...
Either way there is no change to the color of text, could someone give me a pointer as to what Im doing wrong here... cheers guys