Ummm.... I forgot! How do you define a define a tag which you have given a specific class in HTML in the CSS document? So say your HTML looks something like this:
<p class="default" >Somerandomtext </p>
So in this case how exactly do you formulate the CSS. Is it like this?
p.default {color:red;}
<p class="default" >Somerandomtext </p>
So in this case how exactly do you formulate the CSS. Is it like this?
p.default {color:red;}
Comment