gpt4 book ai didi

css - 右对齐的 BS header

转载 作者:行者123 更新时间:2023-11-28 16:50:23 29 4
gpt4 key购买 nike

我想在右侧的标题中添加一个额外的小元素,该元素与右侧对齐,如下所示:

<h1>Header<small>subheader<span class="pull-right">subheader right</span></small></h1>

但是右侧的 span 元素放置得更高/与第一个小元素不在一条直线上。我做错了什么?

我不想使用 css 网格。

最佳答案

这就是你能做的。

h1{
display: flex;
width: 100%;
align-items: center;
}
small{
display: flex;
width: 100%;
}
span{
display: flex;
width: 100%;
justify-content: flex-end;
}

您可以从 span 中删除 pull right 类。

关于css - 右对齐的 BS header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59191986/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com