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>
link|improve this question

62% accept rate
@user height: auto !important; is causing the issue. – Šime Vidas Feb 2 '11 at 13:39
feedback

1 Answer

up vote 2 down vote accepted

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

link|improve this answer
Excellent it works! Thanks for that info – htmlr Feb 2 '11 at 13:49
feedback

Your Answer

 
or
required, but never shown

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