gpt4 book ai didi

html - 垂直对齐,让我同样头疼

转载 作者:可可西里 更新时间:2023-11-01 14:49:59 25 4
gpt4 key购买 nike

您好,我正在尝试在 h1 中垂直对齐 anchor 文本,我尝试过垂直对齐居中,但一些行高技巧无法使其正常工作!

<header>
<div></div>
<h1><a>somelink</a></h1>
</header>

CSS:

div{
height:80px;
width:80px;
float:left;
}

h1{
font-size: 32px;
line-height: 32px;
min-height: 80px;
vertical-align: middle;
a{
line-height: inherit;
vertical-align: middle;
}

这就是我的目标,我可能可以用表格来解决它,但是关于是否应该使用表格存在很多争论,所以我试图找到一个替代方案:

enter image description here

最佳答案

DEMO

你可以为此添加一个parent div :-

 <div id="parent">
<div id="child"></div>
<h1><a>somelink is here.somelink is here.somelink is here.somelink is here.somelink is here.somelink is here.somelink is here.somelink is here.</a></h1>
</div>

CSS

#child {
height:200px;
width:80px;
float:left;
background: #333333;
}
#parent{
border:solid 1px yellow;
width: 100%;

关于html - 垂直对齐,让我同样头疼,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21405202/

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