Forum Moderators: not2easy

Message Too Old, No Replies

Decrease line spacing

         

mickapoo

1:14 pm on May 8, 2008 (gmt 0)

10+ Year Member



Hello,
I have a table with a few elements in it. What I'm trying to do is keep the spacing between all of the elements the same, except for the one that breaks: VMC & IMC Simulator Introduction<br>to Fuel Systems. All of the other items should stay as is, meaning their spacing is correct. How do I tighten up the space between the "VMC & IMC Simulator Introduction" and the line below it, "to fuel systems"?

This is what I have now:

<table>
<tr>
<td>Normal Procedures Checklist</td>
</tr>
<tr>
<td>Powerplant Managagement</td>
</tr>
<tr>
<td>VMC & IMC Simulator Introduction<br>to Fuel Systems</td>
</tr>
<tr>
<td>Powerplant Controls</td>
</tr>
</table>

Thank you!

birdbrain

9:48 pm on May 8, 2008 (gmt 0)



Hi there mickapoo,

try it like this...


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<style type="text/css">
#lh {
line-height:0.8;
}
</style>

</head>
<body>

<table><tr>
<td>Normal Procedures Checklist</td>
</tr><tr>
<td>Powerplant Managagement</td>
</tr><tr>
<td id="lh">VMC & IMC Simulator Introduction<br>to Fuel Systems</td>
</tr><tr>
<td>Powerplant Controls</td>
</tr></table>

</body>
</html>


birdbrain