Skip to content Skip to sidebar Skip to footer

Unwanted Row Space In Table

I have a table which contains a segmented picture. Picture is segmented due to adding mouse over effect on some parts of picture. Although the stand-alone version is OK, when integ

Solution 1:

There is a line-height: 21px; in your stylesheet. Remove that it looks good.

Solution 2:

You can use default css style such as

table {
      margin-left:auto;
      .....
}
    td {
      margin-left:auto;
      .....  
}
    tr {
      margin-left:auto;
      .....
}     

Post a Comment for "Unwanted Row Space In Table"