-7

有没有办法将 css 文件添加到以下 php 代码中:

<?php            
   echo "<a href=logout.php>Logout</a>";   
?>  
4

3 回答 3

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,你会以同样的方式添加它。

于 2012-10-01T20:52:16.483 回答
0

您实际上可以在 PHP 中进行上下文切换。考虑以下

<style type="text/css">
  a {
    color: red;
  }
</style>

<?php  
  echo '<a href="logout.php">Logout</a>';   
?>  
于 2012-10-01T20:52:32.147 回答
0

听起来你想要内联 CSS,例如:

<p style="background: blue; color: white;">A new background and font color with inline CSS</p>
于 2012-10-01T20:52:49.597 回答