In my jsp project i am using tables for ordering my values. There lot of vertical space is getting wasted in rows, How can I avoid it? I tried to set padding, margin, etc as 0px. still space is coming. I am using dream weaver for designing.

<table width="742"  cellpadding="0" cellspacing="0" vspace="0">

        <tr onmouseover='over(1)' onmouseout='out()'>
            <td width="113"><h4>F Name 1</h4></td>
            <td width="126"><h4>L Name 1</h4></td>
            <td width="61"><h4>Age 1</h4></td>
            <td width="111"><h4>Gender 1</h4></td>
            <td width="304"><h4>Address 1</h4></td>
        </tr>

        <tr  onmouseover='over(2)' onmouseout='out()'>
            <td ><h4>F Name 2</h4></td>
            <td><h4>L Name 2</h4></td>
            <td><h4>Age 2</h4></td>
            <td><h4>Gender 2</h4></td>
            <td><h4>Address 2</h4></td>
        </tr>

        <tr  onmouseover='over(3)' onmouseout='out()'>
            <td><h4>F Name 3</h4></td>
            <td><h4>L Name 3</h4></td>
            <td><h4>Age 3</h4></td>
            <td><h4>Gender 3</h4></td>
            <td><h4>Address 3</h4></td>
        </tr>
                </table>
link|improve this question

5  
Just stop using h4 everywhere. Those values aren't headings. – Alohci Dec 12 '11 at 7:51
1  
Use reset css – anglimass Dec 12 '11 at 7:51
feedback

4 Answers

up vote 5 down vote accepted

In CSS:

h4 { margin: 0; padding: 0; }
table { border-collapse: collapse; border-spacing: 0; }
table td { margin: 0; padding: 0; }

For those interested, Mozilla describes border-collapse in depth. In the context of this example:

In the collapsed border model, adjacent table cells share borders. In that model, the border-style value of inset behaves like groove, and outset behaves like ridge.

link|improve this answer
Please explain the use of border-collapse: collapse – Sarin Jacob Sunny Dec 12 '11 at 12:26
1  
Edited to explain this. – Jason T Featheringham Feb 9 at 8:53
feedback

You need to remove default margins for the h4 tags as well.

h4 { margin:0;}

All H (h1-h5) tags have built in margins.

link|improve this answer
feedback

Have you tried setting this stuff in CSS?

<style type="text/css">
 .mytable, .mytable td {
   width: 742px;
   padding: 0;
   margin: 0;
 }
 H4 {
   padding: 0;
   margin: 0;
 }
</style>
<table class="mytable">

        <tr onmouseover='over(1)' onmouseout='out()'>
            <td width="113"><h4>F Name 1</h4></td>
            <td width="126"><h4>L Name 1</h4></td>
            <td width="61"><h4>Age 1</h4></td>
            <td width="111"><h4>Gender 1</h4></td>
            <td width="304"><h4>Address 1</h4></td>
        </tr>
...

Also, you can handle your TD widths and content formatting in CSS, and it will clean up your HTML quite a bit.

link|improve this answer
feedback

There exists some default margin for header tags H1 -H6 put margin=0 for Example h4 { margin:0;}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.