【发布时间】:2019-10-16 08:52:39
【问题描述】:
我正在尝试实现以下效果,但在定位文本和使下划线移至屏幕末尾时遇到了一些问题。
.header {
height: 550px;
width: 100%;
background-color: #1F2041;
position: relative;
}
.header h1, .header h2{
color: white;
font-size: 52px;
text-transform: uppercase;
margin-bottom: 20px;
border-bottom: 1.5px solid currentColor;
line-height: 0.7;
position: absolute;
top: 210px;
}
.header p {
margin-top: 40px;
color: white;
}
<div class="header">
<h2>About</h2>
<h2>Nikola</h2>
<p>Simple. Modern. Yours.</p>
</div>
【问题讨论】:
-
使用 flexbox 而不是使用所有这些定位技巧,您的生活会更轻松地维护您的代码