有没有办法将css文件添加到以下php代码中:
<?php
echo "<a href=logout.php>Logout</a>";
?>
答案 0 :(得分:2)
<?php
echo '<link href="stylesheet.css" rel="stylesheet" type="text/css" />';
echo "<a id='logout' href='logout.php'>Logout</a>";
?>
stylesheet.css中的:
#logout{color:green;font-size:.7em;border:1px solid black;}
如果它是html,你会添加它。
答案 1 :(得分:0)
您实际上可以在PHP中进行上下文切换。请考虑以下
<style type="text/css">
a {
color: red;
}
</style>
<?php
echo '<a href="logout.php">Logout</a>';
?>
答案 2 :(得分:0)
听起来像你想要inline CSS,例如:
<p style="background: blue; color: white;">A new background and font color with inline CSS</p>