样式属性嵌套在id和class中

时间:2017-11-01 21:26:47

标签: css

enter image description here

我想要做的是删除p嵌套在idclass内的余量。

请注意,我无法为此id添加直接classp,因为这是一个Wordpress网站。

3 个答案:

答案 0 :(得分:4)

我相信这就是你想要的东西

.textwidget p
{
    margin: 0;
}

或者如果您特别需要第一段标记

.textwidget p:first-child
{
    margin: 0;
}

答案 1 :(得分:1)

您需要使用#id.classp和可能的:first-child选择器,如下所示:

#panel-w59fa3473baf71-0-1-0 .textwidget p:first-child {
   /* your styles */
}

请记住,id可能会发生变化,因为这是一个Wordpress网站。如果是这种情况,您需要在同一元素上使用class之一。像:

.so-panel .textwidget p:first-child {
   /* your styles */
}

答案 2 :(得分:0)

实际上这是我的错误,我用p(。)

作为前缀
/*Style header whatsapp area*/
#panel-w59fa3473baf71-0-0-0 .textwidget p{
margin:0px;
}
#panel-w59fa3473baf71-0-1-0 .textwidget p{
margin:0px;
}