gpt4 book ai didi

css - 相对于彼此对齐元素

转载 作者:太空宇宙 更新时间:2023-11-04 10:44:39 25 4
gpt4 key购买 nike

基本上我想知道您是否可以相对于彼此定位 2 个元素。我在 div 中有一个 h1 和 h2,我想将 h2 对齐到 h1 的右侧

enter image description here

html

<header>
<div>
<h1>Header with some text</h1>
<h2>Other header</h2>
</div>
<div>
</div>
<div>
</div>
</header>

CSS

header { 
width: 960px;
}

div {
width: 318px;
float: left;
border: 1px solid red;
min-height: 200px;
}

h1, h2 {
font-size: 16px;
}

最佳答案

最简单的解决方案是在 extra inline-block div 中包装标题,并应用 text-align:right

.parent {
width: 80%;
border: 1px solid red;
}
.wrap {
display: inline-block;
text-align: right;
}
<div class="parent">
<div class="wrap">
<h1>
I'm a really long h1 tag
</h1>
<h2>
Short h2 tag
</h2>
</div>
</div>

关于css - 相对于彼此对齐元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35528720/

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