-1
如何獲取顯示爲HTML的變量$text
?我可以將Html-Code作爲Css-Content嗎?
請參見下面的代碼示例:
<?php
header('Content-type: text/css');
$background = "#ffafff";
$color = "#000000";
$green = "#16a86f";
$text= '<h1>TestText</h1>';
?>
body {
background-color: <?=$background?>;
}
#logo::before{content: "<?php echo($text);?>";}
#logo {
color: <?=$green?>;
font-weight: bold;
}
#slogan {
color: <?=$color?>;
}
#rahmen {
border: 0.1em solid <?=$green?>;
text-align: center;
}
目前,我得到這樣的輸出:
我不知道我理解你的問題,你問的是如何顯示變量'$ text'? – Epodax
你不能在css'content'中輸出html! – Aaron