Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to get min-height to work on table in Firefox 3.6

Tags:

css

firefox

I have an issue with min-height not working on my absolutely postioned table. But, I'm able to get it working in IE 6 using height (as i know IE 6 treats height like min-height)

Any clues on how I can get this working?

<table cellspacing="0" style="position:absolute;top:300px;left:0;width:100%;min-height:100px; height: auto !important; height: 100px">
<tr>
<td> adawdaaw </td>
<td> fefsfs </td>
</tr>
</table>
like image 426
htmlr Avatar asked Feb 02 '11 13:02

htmlr


1 Answers

Just use height:100px as this interpreted as minimum height on tables anyway.

like image 88
anothershrubery Avatar answered Nov 14 '22 20:11

anothershrubery