min-height not working in Firefox/Opera

E

effendi

I created a table with the following style for each cell. It worked
fine for MSIE but when opened in Firefox/Opera, the cells collapsed
What do I need to change to make it work in the other broswers as well.


..workplan td{
padding: 0px;
min-height: 17px;
border: 1px solid #cccccc;

}

Thanks
 
D

dorayme

I created a table with the following style for each cell. It worked
fine for MSIE but when opened in Firefox/Opera, the cells collapsed
What do I need to change to make it work in the other broswers as well.


.workplan td{
padding: 0px;
min-height: 17px;
border: 1px solid #cccccc;
}

What is the point of the min-height?

You mean for the relevant HTML to be something like:


<table cellspacing="0" cellpadding="5" summary="base details">

<tr class="workplan">
<td>Small</td>
<td>45x45</td>
<td>17</td>
<td>41</td>
</tr>

<tr class="workplan">
<td>Medium</td>
<td>48x48</td>
<td>24</td>
<td>51</td>
</tr>

</table>

?

min-height makes no difference at all in this situation in IE Mac
as well as other browsers.

What does "cell collapse" look like in this situation? They look
fine upstanding cells to me in FF and Safari and iCab and Mac
IE... even with your css.
 
B

Ben C

I created a table with the following style for each cell. It worked
fine for MSIE but when opened in Firefox/Opera, the cells collapsed
What do I need to change to make it work in the other broswers as well.


.workplan td{
padding: 0px;
min-height: 17px;
border: 1px solid #cccccc;

}

Just use height: 17px.

Height is interpreted as a minimum height on table cells anyway.
 
E

effendi

Ben said:
Just use height: 17px.

Height is interpreted as a minimum height on table cells anyway.

Thanks, I changed min-height to height as you suggested and it worked.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,046
Latest member
Gavizuho

Latest Threads

Top