自定义CSS只与一个页面相关联?

时间:2014-06-10 07:30:22

标签: css wordpress

我有一个wordpress网站,只允许添加海关css(基本上)。我有一个css代码,页面ID是108.

我在网上找到了一些建议:

.your_ID h2 {display:none;}

但如何正确插入我的ID?

我的代码是:

project-image figcaption {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: transparent;
    color: #111;
    font-size: 11px;
    padding: 6px 10px;
    letter-spacing: 0.02em;
    } 

3 个答案:

答案 0 :(得分:0)

你可以试试这个:

ID表示"#"

#your_ID {"Your css here"}

答案 1 :(得分:0)

@ user3604485,用于选择ID's we use #和选择class .,即

#your_ID h2 {display:none;} //this is for ID

.your_Class h2 {display:none;} // this css is basically for your class

答案 2 :(得分:0)

您应该为图片指定Class或Id,例如:

ID 项目图片然后将此css与ID选择器#

一起使用
#project-image  {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: transparent;
    color: #111;
    font-size: 11px;
    padding: 6px 10px;
    letter-spacing: 0.02em;
    } 

如果您想使用,例如项目图片,请将此css与类选择器.一起使用

.project-image{
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: transparent;
    color: #111;
    font-size: 11px;
    padding: 6px 10px;
    letter-spacing: 0.02em;
    }