我需要底部和顶部行更接近标题,但字体占用的空间比实际需要的要多。
这就是它在实践中的样子:Actual Page
这就是我试图让它看起来的样子:Ideal Look
我的代码:
HTML
<div id="title" class="title">
<h1 id="title-h1">
<span class="text-title">MINDESIGNS</span>
</h1>
</div>
CSS
h1{
text-align: center;
margin: 0px;
}
.text-title{
font-family: 'Thick Thinks', sans-serif;
font-weight: bold;
color: #303030;
font-size: 17vw;
justify-content: center;
vertical-align: middle;
margin: 0;
user-select: none;
}
.title{
width: auto;
border-bottom: 1px solid #303030;
align-items: center;
justify-content: center;
padding-left: 1%;
padding-right: 1%;
padding-top: 0%;
padding-bottom: 0%;
}
2条答案
按热度按时间7fhtutme1#
line-height: 1;
应该能让你很接近。r9f1avp52#
1.可以使用行高
1.使用另一个div和hr标签,然后添加一些样式