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文件的链接? 谢谢
答案 0 :(得分:3)
您无法从包含它的页面设置iframe
的内容样式。您需要在“内部/包含”页面(在您的情况下,story1txt.php)中具有样式信息。
编辑:如果你要求特定的CSS,那就是:
body {
font-size: 17px;
font-family: "Arial Narrow", sans-serif;
}