links in divs

liunx

Guest
It's probably very straightforward, but can you alter link settings [size] within a div in a style sheet?

Reason being is that I have a menu div with small size fonts, and I want to use larger fonts in a different div with anchors.

many thanks.

cnhdiv {
font-size: 1em;
}
div#nav a {
font-size: 0.8em;
}
<div id="nav"><a href=http://www.webdeveloper.com/forum/archive/index.php/"#">This link text is small.</a></div><div><a href="#">This link text is larger than the other link text.</a></div>
 
Back
Top