我们可以使用有条件的css样式吗?

时间:2020-04-15 作者:Avinash Patel

我们可以根据帖子类别应用css吗。例如,我有以下css

.question-content-text{font-size: 16px;}
这是适用于所有职位,我的要求是有不同的css根据职位类别如下

If (post_category_id = 1 ) then this css .question-content-text{font-size: 16px;} 
If (post_category_id = 2 ) then this css .question-content-text{font-size: 25px;}
IF (post_category_id not in (1, 2)  ) then this css .question-content-text{font-size: 50px;}
如果可能的话,你能帮我把这个纳入我的孩子主题吗

1 个回复
SO网友:Tobias

看起来Discy主题在类中也有类别,如屏幕截图所示:

enter image description here

只需将您的样式添加到类中即可。

示例:

.question-category-language {
    font-size: 16px;
}

.question-category-analytics {
    font-size: 25px;
}