我想在标题下面添加一行到标题大小,如果我使用border-bottom,那么该行和标题之间将没有空格。所以我需要一些其他解决方案。
h2 {
color: #0085c3;
font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
font-size: 33px;
font-weight: 600;
line-height: 30px;
margin: 40px auto 25px;
text-align: center;
}
h2::after {
background: #000;
display: block;
height: 2px;
width: 50px;
}
答案 0 :(得分:2)
您使用了border-bottom
这是好的,现在您可以使用padding-bottom
来添加空间。像这样:
h2 {
color: #0085c3;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 33px;
font-weight: 600;
line-height: 30px;
margin: 40px auto 25px;
text-align: center;
}
h2 span {
border-bottom: 1px solid #0085c3;
padding-bottom: 10px;
}

<h2><span>ADVERTISING</span></h2>
&#13;
答案 1 :(得分:0)
您可以通过以下方式添加CSS填充:padding-bottom: 5px
。