你可以使用
CSS flex
使项目并排对齐。现在对于日期和名称,只需使用
text-align: right;
html {
background: whitesmoke;
}
#header {
display: flex;
flex-direction: column;
}
.title_wrapper {
display: flex;
align-items: center;
}
.date,
.author {
text-align: right;
}
h1.title {
font-size: 50pt;
}
<div class="front-page">
<div id="header" class="title-page">
<h2 class="date">2019-10-18</h2>
<div class="title_wrapper">
<h1 class="title">Quarterly Report</h1>
<h1 class="subtitle">Sub Title</h1>
</div>
<h2 class="author">Me</h2>
</div>
</div>