我有一个iframe,当从html页面提交表单时,会在其中显示一个php页面。
是否可以使用某些PHP代码设置样式链接?如果是这样,怎么样?
由于
答案 0 :(得分:0)
只需使用PHP的echo
添加一些internal或inline CSS样式。
一个例子(使用“heredoc”语法):
echo <<<END
<style type="text/css">
a:link { color: blue; text-decoration: none; }
a:visited { color: blue; text-decoration: none; }
a:hover { color: red; text-decoration: underline; }
a:active { color: red; text-decoration: underline; }
</style>
END;
或类似的东西。
答案 1 :(得分:0)
您可能希望使用css,而不是php,但是您可以将其解析为您的php文件。
<?php
// code here....
?>
<style type="text/css">
iframe a {
color:red;
}
</style>
<?php
// more code here....
?>