请注意,我没有编程知识。没有找到我想要的东西,我一直在尝试自己创建它。
我正试图在一个网站上插入两个网站(以便我可以根据自己的需要来决定使用哪个网站)。试图让它们两个都覆盖整个屏幕的一半,我尝试使用“浮动”,“ iframe”和填充工具,但没有成功。
<!DOCTYPE html>
<html>
<head>
<title>WolframDuckGo!</title>
</head>
<body>
<div style="float: right;">
<iframe src="https://duckduckgo.com/" width="500%" height="1000%" frameborder="0"></iframe>
</div>
<div style="float: left;">
<iframe src="https://www.wolframalpha.com/" width="500%" height="1000%" frameborder="0"></iframe>
</div>
</body>
</html>
预期结果是一个整齐的主页,两个站点并排... 结果大声笑https://wolframduck.github.io/
答案 0 :(得分:0)
您可以执行以下操作:
<!DOCTYPE html>
<html style="height: 100%;">
<head>
<title>WolframDuckGo!</title>
</head>
<body style="height: 100%;">
<iframe src="https://duckduckgo.com/" frameborder="0" style="float: left; width: 50%; height: 100%;"></iframe>
<iframe src="https://www.wolframalpha.com/" frameborder="0" style="width: 50%; height: 100%;"></iframe>
</body>
</html>
但是正如@OrangeDog写道:DuckDuckGo无法加载。