通过代码,我无法在iFrame中生成文本

时间:2012-09-09 17:34:11

标签: html css iframe

这里是我的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>

如何在其中获取文字......

2 个答案:

答案 0 :(得分:0)

你遗失了一个标签。你也试图让框架内的页面具体化。必须使用自己的依赖项

指定正在框架中加载的页面

答案 1 :(得分:0)

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

一个很好的参考是w3schools(link1link2),在那里你可以找到很多关于html标签的信息。

PS:不推荐使用<font>标记,因此您不能再使用它了