2016-02-05 32 views
-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; 
} 

目前,我得到這樣的輸出:

enter image description here

+0

我不知道我理解你的問題,你問的是如何顯示變量'$ text'? – Epodax

+0

你不能在css'content'中輸出html! – Aaron

回答

0

你不能有內content HTML標籤:

$text = '<h1>TestText</h1>'; 

所以,將其改爲只有TestText然後使用CSS設計樣式以匹配h1的樣式。

#logo::before { 
    font-size: 1.5em; 
    font-weight: bold; 
} 
相關問題