【发布时间】:2021-05-28 06:09:16
【问题描述】:
我正在尝试在同一行显示带有 hr 和按钮的标题。像这样的:
标题------------------------------------ 按钮
我试过 display flex,但是 hr 变成了一条垂直线。
.flex-header {
display: flex;
}
<div class="flex-header">
<h2> Des habitations pour tous </h2>
<hr/>
<button> Collections </button>
</div>
【问题讨论】: