"... is it possible to inherit a property from one style to another style. So, for example, I could inherit the font size specified in the default paragrah tag settings into my hyperlink labels."
Link tags will automatically use the fonts in the paragraph if and only if they are inside the paragraph. If they are outside the paragraph (say, in a list), they will not use the same font, etc.
For example, this css:
* { margin: 0 10px; padding:0; font-size: 1 em; } p, a { font-size: 75%; }
will generate links and paragraphs that are 0.75 in size. But it will display links in paragraphs to approximately .56em (.75 ββ* .75).
In addition to the specific reference provided by Jonathan Arkell, I recommend the CSS Tutorial at W3Schools.
Traingamer
source share