我有一个iframe,还有一个body和一个div
<iframe name="myiframe">
<html><head></head>
<body>
<div style="width: 100%;">This is my test text</div>
</body>
</html>
</iframe>
iframe具有特定宽度。比方说100px。 div得到了它的100%。问题是我在div中的文字并不全是可见的。我只能看到什么适合100px,其余的是隐藏的,而我希望它分成两行,以防万一。
有谁知道我该怎么做?
提前致谢
答案 0 :(得分:0)
首先,请注意身体不应该在头部(如您的示例所示)。
接下来,我认为iframe中的文字是浏览器不支持iframe时的内容。要正确使用iframe,必须将html保存到单独的文件中,并使用src属性将文件加载到框架中。
这样的事情应该有效:
page1.html
<html>
<head></head>
<body>
<iframe src="page2.html">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>
page2.html
<html>
<head></head>
<body>
<div style="width: 100%;">This is my test text</div>
</body>
</html>
有关更多信息,请查看W3Schools: