有没有办法将 css 文件添加到以下 php 代码中:
<?php
echo "<a href=logout.php>Logout</a>";
?>
<?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,你会以同样的方式添加它。
您实际上可以在 PHP 中进行上下文切换。考虑以下
<style type="text/css">
a {
color: red;
}
</style>
<?php
echo '<a href="logout.php">Logout</a>';
?>
听起来你想要内联 CSS,例如:
<p style="background: blue; color: white;">A new background and font color with inline CSS</p>