我偶然发现了一个似乎无法以任何方式解决的问题,也许我以错误的方式使用div?
.greeting h1 {
font-family: 'Raleway',sans-serif;
font-weight: lighter;
font-size: 100px;
text-align: center
}
.greeting h2 {
font-family: 'Raleway',sans-serif;
font-weight: lighter;
font-size: 35px;
line-height: 0px;
text-align: center
}
最佳答案
标题h1到h6默认有边距,所以你需要重置它,设置:margin:0.
.greeting h1 {
font-family: 'Raleway',sans-serif;
font-weight: lighter;
font-size: 100px;
text-align: center;
margin: 0
}
.greeting h2 {
font-family: 'Raleway',sans-serif;
font-weight: lighter;
font-size: 35px;
text-align: center;
margin: 0
}
原文链接:https://www.f2er.com/css/427669.html