Quote:
Originally Posted by crankypants
Because all the <Hn> tags are so similar in size (to me), I like to make H2 and H4 underlined in the CSS:
h2 {text-decoration:underline}
h4 {text-decoration:underline}
But that's just me. And the default <h4> is the same size as regular text. Which can be odd.
|
Yeah, which is why I don't use any heading under h4, as h5 is actually smaller than the paragraph text.
For HTML, have you tried doing:
Code:
<a href="" <h2>Heading underline</h2> </a>
It's an option that might, or might not work, depending on your device, as an alternative to:
Code:
<u><h2>Heading underline</h2></u>