Echo php使用CSS内容:属性

时间:2014-12-16 10:41:06

标签: php html css

我需要使用css Content:property来回显php。

PHP:

<?php
$links = "<a href=\"https://www.facebook.com\" target=\"_blank\"><img src=\"images/fb.png\"     width=\"16\" height=\"16\"></a> <a href=\"https://twitter.com\" target=\"_blank\"><img     src=\"images/twitter.png\" width=\"16\" height=\"16\"></a>";
?>

CSS:

body li:nth-child(2):after{ 
content: "<?php echo "$links"; ?>";
color:#FFF;
}

HTML:

<ul>
<li>date</li>
<li>time</li>
</ul>

期望的输出:

Date  Time  FB  TW

3 个答案:

答案 0 :(得分:1)

尝试

CSS:
body li:nth-child(2):after{ 
    content: "<?php echo $links; ?>";
    color:#FFF;
}

您也可以尝试

content: <?php echo $links; ?>;

假设您的CSSPHP

位于同一档案中

答案 1 :(得分:0)

content: "<?php echo $links; ?>";

答案 2 :(得分:0)

回显CSS时不需要引号。修改如下:

content: "<?php echo $links; ?>";