我一直在试图弄清为什么不能使用以下代码嵌入该特定网站:
<iframe src="https://time.my-masjid.com/timingscreen/7695401e-d724-4adb-a188-ed33c2ce886e"></iframe>
执行此操作时,iframe呈现为白色框。
答案 0 :(得分:0)
默认情况下,iframe以较小的尺寸显示,但是如果您设置高度宽度,它将显示您的内容,您可以尝试以下操作:
<html>
<head>
<style>
iframe {
position:absolute;
top:0;
left:0;
width:80%;
height:80%;
}
</style>
</head>
<body>
<iframe src="https://time.my-masjid.com/timingscreen/7695401e-d724-4adb-a188-ed33c2ce886e"></iframe>
</body>
</html>