HTML自动高度调整

时间:2015-05-29 14:22:51

标签: html iframe

初学者在这里可以使用一点帮助。我需要让我的HTML文档自动调整到给定页面的高度。这是我到目前为止所写的内容。

<marquee height="900px" Width="791px" style="border:none" behavior="scroll" direction="up" scrollamount="3">
    <iframe src="http://www.icclos.net/signage/SignageRoomScheduleFormatted.htm" style="border:none" height="2400" width="791" scrolling="no" border="no"/>
</marquee>

请告知我如何改进和纠正。任何信息,将不胜感激。

2 个答案:

答案 0 :(得分:0)

iframe的每个父级都需要height: 100%,直到您到达HTML标记

<style>
  html,body,marquee,iframe {height: 100%;}
</style>

答案 1 :(得分:0)

您可以将选取框的高度设置为100%而不是固定数字。这应该会自动调整到屏幕的高度。