我正在尝试插入以下代码,但它无法正常工作。我无法获得100%的身高。谁能帮我?谢谢!
<body style="overflow:hidden;">
<TABLE align=left width=234 border="0" cellpadding="0" cellspacing="0">
<TR>
<TD valign=top align=center WIDTH="234" >
<object data="EmbedPage.html" type="text/html" style="width: 230px;height:100%;"></object>
</TD>
</TR>
</TABLE>
</body>
试试这个
<body style="overflow:hidden;height:100%;">
<object data="EmbedPage.html" type="text/html" style="float:left;width:230px;height:100%;">
</object>
</body>
要在全屏显示,请使用:100vh;
<body>
<object data="EmbedPage.html" type="text/html" style="width:100%;height:100vh;">
</object>
</body>
只需将其从表中删除即可。
<BODY style="overflow:hidden; height:100%;">
<object data="http://www.misgeret.co.il/Ebay/Famus/SideMenuFamus.html" type="text/html" style="float:left;width:230px;height:100%"></object>
</BODY>
http://jsfiddle.net/ma9ic/QtKMa/5/
表格单元格中100%的高度始终是一种痛苦。从技术上讲,TD没有高度(因为这取决于其内容)。你要求浏览器做的是让孩子100%的父母,这是其孩子的100%,这是其父母的100%......你可以看到这可能是一个问题。
您可以尝试向TD添加显式高度并使用table-layout:fixed固定在表上。至少通过这种方式,浏览器知道父级的高度,而不需要孩子的高度,但仍然可能无效。
您可能需要重新考虑如何进行此操作。
这会显示使用设定高度和使用iframe的结果
<BODY style="overflow:hidden;height:100%;">
<TABLE align=left width=234 border="1" cellpadding="0" cellspacing="0">
<TR>
<TD valign=top align=center WIDTH="234" height="1000">
<iframe src="http://www.misgeret.co.il/Ebay/Famus/SideMenuFamus.html" style="border:0px #FFFFFF none;" name="myiFrame" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" height="100%" width="100%"></iframe>
</TD>
</TR>
</TABLE>
</BODY>
http://jsfiddle.net/ma9ic/QtKMa/6/
希望这可以帮助
body, html{
width: 100%;
height: 100%;
}
<body>
<table class="flash-container" style="height: 100%; width:100%">
<tr style="height: 100%; width:100%">
<td style="height: 100%; width:100%">
<object width="100%" height="100%">
<param name="autoPlay" value="true"></param>
<embed allowfullscreen="true" autoPlay="true" flashvars="autoplay=true&play=ture" allownetworking="all" id="pptShow" allowscriptaccess="always" height="100%" src="http://www.weilaijiaoxue.com:9096/upload/2016/4/13/swf_20160413115509559.swf" type="application/x-shockwave-flash" width="100%"></embed>
</object>
</td>
</tr>
</table>
</body>