表td在IE中固定大小

时间:2012-09-21 12:43:32

标签: html internet-explorer

HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">

<html>
<body>
    <table width="100%" border="1" cellspacing="0" cellpadding="0">
        <tbody>

            <tr>
                <td  valign="top" align="right" style="height:10px;vertical-align:center;background-repeat: no-repeat;">
                    <div><img width="25" height="16" src="images/hide.jpg" id="hide"></div>
                </td>   
                <td rowspan="2" valign="top">
                 <iframe src="dynamic.html" id="mainFrame" name="mainFrame" frameborder="0" scrolling="no" width="1100" height="500"></iframe>
                </td>
            </tr>

            <tr>
                <td valign="top">
                <iframe src="navigation.html" id="leftFrame" name="leftFrame" frameborder="0" scrolling="auto" width="200" height="500"></iframe>
                </td>
            </tr>
        </tbody>
    </table>
</body>
</html>

首先按预期在每个浏览器中工作,但在 IE 中 在mainFrame中打开任何文档时,它会被拉伸,如下所示

enter image description here

当我在mainfram中打开任何文档时,它会像

那样拉伸行

enter image description here

如何摆脱这个..

0 个答案:

没有答案