Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我iframe跨越页面的宽度,并向下到页面的底部。在这个 w3 页面中,我看到了宽度和高度选项,但它们必须以像素为单位指定。如何设置它以跨越我想要的方式?
iframe
这是一个将显示你想要的代码,但如果你不想使用 px ......
<iframe src="http://www.google.com" width="180px" height="180px">
比您可以使用 % 指定框架的高度和宽度...它将占主框架大小的百分比,即 1080px ..
<iframe src="http://www.google.com" width="30%" height="20%">