我在我的网站上显示一个远程网页,如下所示:
<iframe src="http://www.smopething.com/index.cfm"
frameborder="0"
width="800"
scrolling="no"
height="1100">
</iframe>
我可以自定义它的大小吗?像<iframe src="etc", height=something,width=something>
???
答案 0 :(得分:2)
最好的方法是:
对于高度/宽度,IFRAME具有高度/宽度属性,如in W3C spec所示。
要获得更多控制,请将iframe
括起来放入DIV
元素,然后使用CSS设置DIV的大小
(如果你直接将CSS应用于IFRAME,它可能会有效,但我不是100%肯定的)
答案 1 :(得分:2)
如果您愿意,可以使用CSS:
<iframe src="http://google.com" style="width:640px;height:480px;"></iframe>
或者您可以使用width和height属性:
<iframe src="http://google.com" width="640" height="480"></iframe>