WordPressテーマSANGOの質問

見出しのCSSのうち○○:afterが反映されない

アバター
きゃんねん

お世話になっております。
h3タグを以下のコードで設定したのですが、記事を表示した際に記事の上部に「見出しの一部」が誤表示されてしまいます。
誤りをご指摘いただけましたら幸いです。

.entry-content h3 {
border-bottom: solid 3px #009fff;
position: relative;
border-left: none;
padding-left: 0;
}

h3:after {
position: absolute;
content: ” “;
display: block;
border-bottom: solid 3px #344864;
bottom: -3px;
width: 20%;
}

SANGOでデフォルトの見出しを変える方法
コメントへの回答
サルワカくん
サルワカくん
2018/10/27

h3:after.entry-content h3:afterとする必要があります。