任何人都知道如何在CSS中编写PHP

时间:2014-10-02 04:21:54

标签: php css

如果

.fpss-template-uncut .navigation li.active,
.fpss-template-uncut .navigation li:hover

然后

.fpss-template-uncut .navigation-title {color: orange;}

如何在CSS中编写此代码?

3 个答案:

答案 0 :(得分:0)

如果我理解你想做什么,那就是超级粗暴的方式:

if (false !== stripos('your_container', '.fpss-template-uncut .navigation li.active, .fpss-template-uncut .navigation li:hover'))
{
    echo '.fpss-template-uncut .navigation-title {color: orange;}';
}

但你真的没有说明,所以我可以离开。

答案 1 :(得分:0)

以下是你将如何写作......

$file = 'style.css';
// Open the file to get existing content
$current = file_get_contents($file);
// Append a new style to the file
$current .= "Your new css style here.";
// Write the contents back to the file
file_put_contents($file, $current);

但是根据你的问题,你只想将导航标题设为橙色,为什么不设置jquery呢?

检查这个答案 https://stackoverflow.com/a/8981521/2922445

答案 2 :(得分:0)

这是我发现在css中使用php的最好方法,它易于设置,让你更灵活

php in css the easier way