| |||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | #1 (permalink) |
| NamePros Regular | HTML problem in IE, please help (colspan). Please open the below code in IE and FF. Code: <html>
<body>
<table style="width:50%; border-collapse:collapse;" border="1">
<tr style="height:25px;">
<td>data</td>
<td style="width:70px;">data2</td>
</tr>
<tr style="height:25px;">
<td colspan="2" bgcolor="#CCCCCC" align="right">A very long footer name, longer than 70px;</td>
</tr>
</table>
</body>
</html>
![]() If you set the footer text to something like "Test", then both browsers behaves as expected. Does anybody have a solution to this?
__________________ Job3k - premium job offers for Russian market. |
| |
| | #2 (permalink) |
| Buy my domains. | Code: <html>
<body>
<table style="width:50%; border-collapse:collapse;" border="1">
<tr style="height:25px;">
<td>data</td>
<td style="width:70px;">data2</td>
</tr>
<tr style="height:25px;">
<td></td>
<td colspan="2" bgcolor="#CCCCCC" align="right" style="width: 70px;">A very long footer name, longer than 70px;</td>
</tr>
</table>
</body>
</html>
|
| |
| | #3 (permalink) |
| NamePros Regular | Dan, Your solution doesn't work: 1. I don't understand for what you put empty "<td></td>" in the footer 2. Adding "width:70px;" to the footer style helps to keep the proper width of the "data" cell, but the footer itself becomes splitted in several lines, since it's width becomes exacty 70px, but I need the width of the footer be as long as the table itself.
__________________ Job3k - premium job offers for Russian market. |
| |
| | #4 (permalink) |
| NamePros Member | Some ideas If you loose the 50% width of the table and go to a fixed width (say 600px) and then specify a width for the first cell (530px in this example) that would work. Or, keep the 50% width, and set the width of the first cell to 100%. That will make the data2 cell shrink below 70px, to keep that from happening you would have to insert a 70px wide image in the data2 cell. Not using tables and using pure css is probably the best answer. Good luck. |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |