gpt4 book ai didi

css - iframe 内容不适合

转载 作者:行者123 更新时间:2023-11-28 06:23:17 24 4
gpt4 key购买 nike

我有一个情况,我有一个 iframe,我无法在其高度上进行操作。我的意思是 iframe 的高度固定为 1000px,我不允许更改它。所以我想做的是以某种方式使内容适合 iframe。我该如何存档?我是 CSS 的新手。谢谢!

<iframe style="height:1000px" src="http://www.w3schools.com">
<div class="content">
<div class="redDot"></div>
</div>
</iframe>

最佳答案

你可以试试这段代码吗?

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
html,body{
width: 100%;
height: 100%;
margin: 0 0 0 0;
padding: 0 0 0 0;
overflow: hidden;

}
iframe {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<iframe src="http://www.w3schools.com" frameborder="0"></iframe>
</body>
</html>

关于css - iframe 内容不适合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35439511/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com