aPefroleastoff49
New Member
I have this \[code\]body\[/code\] style css rule . I wonder how I could keep the rule, but only not use it for a part of my code that starts immediately after \[code\]<body>\[/code\]? The code that starts immediately after the \[code\]<body>\[/code\] is around 5 hyperlinks,just one below each other .At this moment the current css formats the hyperlink size and fonts which I don't want; is there a way that these hyperlinks have their own font or size or have default values (basic format) ? How can this be done ?css rule:\[code\]body { direction: ltr; font-size:62.5%; color:#555; font-family:Tahoma, Arial, Helvetica, Verdana, Sans-Serif; z-index:1;\[/code\]}code after \[code\]<body>\[/code\]:\[code\]<a href="http://stackoverflow.com/questions/15605456/link1.html">link1</a> <br /><a href="http://stackoverflow.com/questions/15605456/link2.html">link2</a> <br /><a href="http://stackoverflow.com/questions/15605456/link3.html">link3</a> <br /><a href="http://stackoverflow.com/questions/15605456/link4.html">link4</a> <br /><a href="http://stackoverflow.com/questions/15605456/link5.html">link5</a> <br />\[/code\]