我有一个小问题。我可以以这种方式动态更改(使用 php)css 样式的内容吗?
<?php
header("Content-type: text/css; charset: UTF-8");
$color = "red;";
?>
header {
color:<?php print $color; ?>
}
?>