HTML input type="submit" doubles row height in table

Posted by FelixM on Stack Overflow See other posts from Stack Overflow or by FelixM
Published on 2010-06-09T01:43:44Z Indexed on 2010/06/09 1:52 UTC
Read the original article Hit count: 264

Filed under:
|
|

I have a HTML table where some rows have a button like this:

  <td >
    <form action="..." method="GET">
      <input type="submit" value="..."/>
    </form>
  </td>

The rows with the input have about twice the height of other rows that have otherwise similar data. When I remove the just the input, the row height goes back to normal. I have the same behavior in Firefox and IE.

Is there any way I can have normal row height AND the button?

© Stack Overflow or respective owner

Related posts about html

Related posts about table