Tips and Tricks
The following examples are completely valid and are not 'hacks'. It is meant as a guide to some of the lesser known aspects of webpage authoring.
Misaligned small text
You will notice that if you create text that is smaller then normal the last line of the small text will be too far down from the rest of the text.
<p><small>
This text is made small with the
small tag. Look at what happens
to this text!</small>
This text is made small with the
small tag. Look at what happens
to this text!
That can be fixed by putting the <br> tag after the closing
</small> tag.
<p><small>
This text is made small with the
small tag. Look at what doesn't
happen to this text!</small><br>
This text is made small with the
small tag. Look at what doesn't
happen to this text!
