wordpress给H标签以及文章段落添加背景色加边框
额外CSS:
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6
{
background:#feefb3 ;
border-radius:10px;
padding:10px;
border: 1px solid #744500;
}
.wenzi
{background:#feefb3 ;
border-radius:10px;
padding:10px;
border: 1px solid #744500;}
entry-content是你文章页定义H标签的CSS类,每个主题不一样,这个名称也不一样,不能直接定义H标签,不然你博客内所有调用H标签的地方都加上了背景色。
.wenzi这里是定义普通段落的,没有将它添加进编辑器,编辑文章的时候在文本状态下引用。
这里是文字
调用。
详细原文:https://www.wuglu.com/wordpress/862.html