|
Posted by Neredbojias on 08/06/07 22:37
Well bust mah britches and call me cheeky, on Mon, 06 Aug 2007 22:07:54
GMT Matt White scribed:
> I know the rounded corners question has been solved many times, but I
> am working with some HTML that is already in place and needs some
> fixing. The problem is that it renders fine in FireFox but IE refuses
> to play nicely. Here is the code - the background colors are only
> there to show the table data entries (they will all end up being
> white). It seems as though the height of the row is too high, but no
> matter how I change it, it won't go. If you open it in FireFox, it
> looks perfect. Any ideas as to what I need to do to make IE render
> this properly? Thanks.
>
> The corner images can be obtained at
> http://clicksellgo.com/suppliers/suppliers. They are the top left and
> right corners of the white table in the middle of the page.
>
> <html>
> <head>
> <title>Test</title>
> </head>
> <body>
> <table cellpadding="0" cellspacing="0" width="760"
> align="center">
> <tr>
> <td bgcolor="#ff00ff">
> <img src="top_left.png">
> </td>
> <td width="740" bgcolor="#00ffff">
> </td>
> <td bgcolor="#ff00ff">
> <img src="top_right.png">
> </td>
> </tr>
> </table>
> </body>
> </html>
No doctype. Quirks mode. Quirky behavior.
--
Neredbojias
Half lies are worth twice as much as whole lies.
[Back to original message]
|