HTML questions <p> and <span>
2 answers
You can set the minimum height in the paragraph:
p { min-height:1.3em; } However, IE6 does not support the min-height property ... I do not have older versions of IE, so I can not verify this, but in modern browsers, the minimum height works fine. The value 1.3em represents the height of one line of text.
0