I'd be grateful for some help on this element addressing question. I want to
change the font-size of the "H" of "Hello World" in the following HTML using
first-letter, but cannot "reach" the element.
<div id="napoleon">
<div>
<a id="1000" class="dynamite " href="test.htm" >Hello World</a>
</div>
</div>
How do I address the contents of the anchor using a combination class
..dynamite and id #napoleon and the A and DIV selectors? This simple CSS has
no effect: .dynamite:first-letter{ font-size: medium}
Thanks
Timo
change the font-size of the "H" of "Hello World" in the following HTML using
first-letter, but cannot "reach" the element.
<div id="napoleon">
<div>
<a id="1000" class="dynamite " href="test.htm" >Hello World</a>
</div>
</div>
How do I address the contents of the anchor using a combination class
..dynamite and id #napoleon and the A and DIV selectors? This simple CSS has
no effect: .dynamite:first-letter{ font-size: medium}
Thanks
Timo
Comment