I have the following html code snippet :-

<html>
<head>
    <style>
        body ul
        {
            margin: 0px;
            border: 1px solid black;
            padding: 0px;
            list-style-type: none;
        }
        ul li {
        display: inline;
            padding: 0px;
            margin: 0px;
            border: 1px solid red;
        }
        table
        {
            display: inline;
            margin: 0px;
            padding: 0px;
            border:1px solid green;

        }

    </style>
</head>
<body>
<ul>
        <li>Item1</li>
        <li>Item2</li>
        <li>
            <table>
                <tbody>
                    <tr>
                        <td>Item3</td>
                        <td>Stars</td>
                    </tr>
                </tbody>
            </table>
        </li>
    </ul>

</body>
    </html>

I have to render this code in quirks mode(Due to an Iframe in the page, to render it properly I found that Quirks mode suits the best). I see that IE8 displays the code as: alt text Table not aligned with the other list items. Whereas mozilla displays it as :-

alt text

Here the table is aligned but the text is not.

What is going wrong here? How do I fix this across browsers

link|improve this question

53% accept rate
Sometimes, setting a value to its default makes IE magically work. Perhaps you could mess with valign? Thats what I tend to try first, when I have to work with... slants eyes that browser. This is especially important for tables, where IE seems to only work for me if i say "valign:bottom" for every single tag in the table... – ItzWarty Feb 23 '10 at 5:43
No.. not working here. The problem is elsewhere :( – Ajay Feb 23 '10 at 8:04
feedback

1 Answer

Insist on quirks mode? OK.

It looks like the td within the table has padding that causes it to render like that in IE.

Try removing padding+margin on all elements after table.

link|improve this answer
Quirks mode dude – Ajay Feb 23 '10 at 4:45
Nope.. 0 padding for all.. still the same.. If u see the image, ull see that the table altogether is positioned a little higher in IE – Ajay Feb 23 '10 at 8:03
feedback

Your Answer

 
or
required, but never shown

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