0

我寻找了一个类似的问题,但没有解决方案。

我有一个网页,中间有一张桌子和一部 Youtube 电影:http ://www.zofim.org.il/magazin_item.asp?item_id=531438084004

它在 Chrome 中看起来不错,但在 Internet Explorer 中,电影太低而且位置不正确。

这是代码:

<table background="http://www.zofim.org.il/pics/magazin/Page-1 (1).jpg" width="650" height="700" border="0" align="center" cellpadding="1" cellspacing="1">
<tbody>
    <tr>
        <td>
        <table border="0" width="600">
            <tbody>
                <tr>
                    <td colspan="4"><span style="font-size: 8; ">&nbsp;                         </span>
                    <p><span style="font-size: 8; ">&nbsp;</span></p>
                    <p><span style="font-size: 8; ">&nbsp;</span></p>
                    <p><span style="font-size: 8; ">&nbsp;</span></p>
                    <p><br />
                    &nbsp;</p>
                    <p><span style="font-size: 8; ">&nbsp;</span></p>
                    <p><span style="font-size: 8; ">&nbsp;</span></p>
                    <p><span style="font-size: 8; "><br />
                    <br />
                    <br type="_moz" />
                    </span></p>
                    <p>&nbsp;</p>
                    </td>
                </tr>
                <tr>
                    <td height="440" width="23%" rowspan="2">
                    <table border="0" width="100%" height="430">
                        <tbody>
                            <tr>
                                <td height="131">&nbsp;</td>
                            </tr>
                            <tr>
                                <td height="63"><a href="http://zofim.org.il/magazin_item.asp?item_id=531477450625&amp;troop_id=285610000">                                     <img border="0" src="http://www.zofim.org.il/pics/magazin/1(158).gif" width="134" height="76" alt="" /></a></td>
                            </tr>
                            <tr>
                                <td>&nbsp;</td>
                            </tr>
                        </tbody>
                    </table>
                    </td>
                    <td height="142" width="12%">
                    <p style="margin-top: 0; margin-bottom: 0">&nbsp;</p>
                    <p>&nbsp;</p>
                    <p>&nbsp;&nbsp;</p>
                    </td>
                    <td height="142" width="35%">
                    <p style="margin-top: 10px; margin-bottom: 0px; text-align: center; "><iframe width="250" height="150" src="http://www.youtube.com/embed/wnBGKeXF8X0?rel=0&amp;controls=0&amp;autoplay=1" frameborder="0" allowfullscreen="" name="I1" scrolling="no" marginheight="2"></iframe></p>
                    </td>
                    <td height="142" width="31%">&nbsp;
                    <p>&nbsp;</p>
                    <p>&nbsp;</p>
                    </td>
                </tr>
                <tr>
                    <td height="285" colspan="3">
                    <table border="0" width="100%" height="292">
                        <tbody>
                            <tr>
                                <td width="135">
                                <table border="0" width="100%" height="280">
                                    <tbody>
                                        <tr>
                                            <td height="78"><a href="http://zofim.org.il/magazin_item.asp?item_id=531516818704&amp;troop_id=285610000">                                     <img border="0" src="http://www.zofim.org.il/pics/magazin/1(158).gif" width="134" height="99" alt="" /></a></td>
                                        </tr>
                                        <tr>
                                            <td>&nbsp;</td>
                                        </tr>
                                        <tr>
                                            <td>&nbsp;</td>
                                        </tr>
                                    </tbody>
                                </table>
                                </td>
                                <td>
                                <table border="0" width="104%" height="278">
                                    <tbody>
                                        <tr>
                                            <td height="78"><a href="http://zofim.org.il/magazin_item.asp?item_id=531556188241&amp;troop_id=285610000">                                     <img border="0" src="http://www.zofim.org.il/pics/magazin/1(158).gif" width="175" height="99" alt="" /></a></td>
                                        </tr>
                                        <tr>
                                            <td>&nbsp;</td>
                                        </tr>
                                        <tr>
                                            <td>&nbsp;</td>
                                        </tr>
                                    </tbody>
                                </table>
                                </td>
                                <td width="153">
                                <table border="0" width="100%" height="281">
                                    <tbody>
                                        <tr>
                                            <td height="78"><a href="http://zofim.org.il/magazin_item.asp?item_id=531595559236&amp;troop_id=285610000">                                     <img border="0" src="http://www.zofim.org.il/pics/magazin/1(158).gif" width="152" height="99" alt="" /></a></td>
                                        </tr>
                                        <tr>
                                            <td>&nbsp;</td>
                                        </tr>
                                        <tr>
                                            <td>&nbsp;</td>
                                        </tr>
                                    </tbody>
                                </table>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                    </td>
                </tr>
            </tbody>
        </table>
        </td>
    </tr>
</tbody>

谢谢!

多尔。

4

1 回答 1

1

通过您提供的标记的外观,您正在使用表格来布局您的网站。这被认为是不好的做法。您应该考虑改为使用最佳实践(div 等)并使用 CSS 来设置布局样式,而不是使用内联样式。完成此操作后,您可以使用prefixr.com创建跨浏览器友好的 CSS。

于 2012-05-10T13:56:38.877 回答