需要将文本在屏幕宽度上拉伸 100%,当我根据布局设置 line-height 时,它会超出边缘,如果你查看元素代码,那么最后会有一个边距标题,下划线在屏幕上可见,没有空格。
<header class="header">
<div class="title">
<h1>PORTFOLIO</h1>
</div>
</header>
CSS下面
.wrap {
margin-left: 100px;
margin-right: 100px;
font-family: 'Bebas Neue', cursive;
border: 1px solid black;
}
.header {
max-width: 100%;
height: 170px;
display: flex;
justify-content: center;
align-items: center;
}
.title {
width: 100%;
display: flex;
}
.title h1 {
letter-spacing: 154px;
font-size: 128px;
text-decoration: underline;
}