PDA

View Full Version : Simple HTML Question


Big Mountain
02-04-2008, 09:49 PM
Hi.

In a table data I have four lines of text each line separated by a <br>
The text are different font sizes. The issue I am having is that the lines have space between them above and below. How do I get the lines of text closer together using simple html?

text line 1
|
(this space)
|
text line 2

Regards

CaptainB
02-04-2008, 10:17 PM
If you enclosed the text in a <p> </p> tag, you could all this to your css:

p {line-height:XXpx;}
Change the XX's to a value.