如何在Wordpress的标题和内容之间的p标签中删除空白?

时间:2018-09-20 20:47:13

标签: html css wordpress

因此,Wordpress将我所有的内容都放在了p标签中,并且它与标头之间形成了一个空白。我不知道如何摆脱这种差距!图片被归为欢迎。

我尝试过,但是仍然有空白

article p {
    margin: 0;
    padding: 0;
}

.welcome {
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
}

picture of gap with inspect element shown

2 个答案:

答案 0 :(得分:0)

已解决

在这种情况下,我没有使用img,而是使用了以图片为背景的div,现在完全没有空格。感谢您的答复。

答案 1 :(得分:-1)

这应该可以完成工作:

article p {
    visibility: hidden;
    width: 0px !important;
    height: 0px !important;
    padding: 0px !important;
    margin: 0px !important;
}