0

这里是我的 iFrame 的代码,但文本实际上并未显示在框架中

.iframe {
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    font-weight: lighter;
    background-attachment: inherit;
    background-repeat: repeat;
    background-position: top;
    text-align: left;
    white-space: normal;
    float: inherit right;
    widows:inherit;
    volume:silent;
    border-left-style: dashed;
    list-style-type: circle;
    cursor: default;
    filter: Glow(Color=#345, Strength=2);
}

html标签中的框架代码

  <iframe class="iframe" align="middle" height="500" width="1000">
      <font color="#00FF33" style="animation:ease-in-out" face="Arial, Helvetica, sans-    serif">hello guys i am dhaiwat....</font>
  </iframe>

怎样才能得到里面的文字...

4

2 回答 2

0

你缺少一个标签。您是否还试图使框架本身内的页面具体化。在框架中加载的页面必须使用它自己的依赖项来指定

于 2012-09-09T17:37:51.947 回答
0

<iframe>内容由 url 属性设置,如下所示url="http://example.com":实际页面(在本例中为 examplel.com)加载到 iframe 框中。对于设置常规内容,您应该使用<div><span>或其他语义。

w3schools ( link1 , link2 )是一个很好的参考,您可以在其中找到很多关于 html 标记的信息。

PS:该<font>标签已弃用,因此您不应再使用它

于 2012-09-09T17:44:55.370 回答