【问题标题】:How to style an iframe?如何设置 iframe 样式?
【发布时间】:2010-12-12 00:36:09
【问题描述】:

iframe 的代码是这样的,因为我使用的是 prettyPhoto

<a href="stories/story1txt.php?iframe=true&width=400&height=200" rel="prettyPhoto">
<img src="images/story1.jpg"/></a>

story1txt.php 文件看起来像这样

<p>Text goes here...</p>

如何设置 php 文件的样式,使字体为 Arial Narrow 和 17px?我是否使用指向 css 文件的链接? 谢谢

【问题讨论】:

    标签: php css iframe


    【解决方案1】:

    您无法从包含 iframe 的页面设置其内容的样式。您需要在“内部/包含”页面(在您的情况下,story1txt.php)上有样式信息。


    编辑:如果您要求特定的 CSS,则类似于:

    body {
      font-size: 17px;
      font-family: "Arial Narrow", sans-serif;
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2022-11-04
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-05-25
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多