gpt4 book ai didi

css - HTML/CSS 文本从 div 顶部对齐

转载 作者:太空宇宙 更新时间:2023-11-03 19:34:00 25 4
gpt4 key购买 nike

我的文本与 div 顶部对齐有问题。

这是 HTML:

<div id="services">

<div class="langelis">
<div class="icon">
<img src="images/knyg.jpg" alt="knyga" />
</div>

<div class="txt">
<h1>Lorem Ipsum</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s..</p>
</div>
</div>
<div class="clear"></div>
</div>

这是 CSS:

#content #main #services {
width: 1010px;
height: auto;
min-height: 320px;
margin: 50px auto;
}

#content #main #services .langelis {
width: 510px;
height: auto;
min-height: 140px;
position: relative;
border: 1px #000 solid;
}

#content #main #services .langelis .icon {
width: 65px;
min-height: 140px;
height: auto;
float: left;
border: 1px #000 solid;
}

#content #main #services .langelis .txt {
width: 440px;
height: auto;
float: left;
border: 1px #000 solid;
}

制作方法文字

Lorem Ipsum Lorem Ipsum 只是打印和排版行业的虚拟文本。自 1500 年代以来,Lorem Ipsum 一直是业界标准的虚拟文本。

从 .txt div 的中心对齐?感谢您的帮助

最佳答案

嗯首先你需要修复你的 css 选择器。
你不能用这种方式写出所有这些 id。

#content #main #services

只需选择 1 个元素和他的 child 。
例如,如果您对此进行测试,它将与您一起使用:

#services .langelis .txt {
width: 440px;
height: auto;
float: left;
border: 1px #000 solid;
text-align:center;

如果你想要它垂直对齐 .txt div 的中心你可以这样做:

#services {
width: 1010px;
height: auto;
min-height: 320px;
margin: 50px auto;

}

#content #main #services .langelis {
width: 510px;
height: auto;
min-height: 140px;
position: relative;
border: 1px #000 solid;
}

#content #main #services .langelis .icon {
width: 65px;
min-height: 140px;
height: auto;
float: left;
border: 1px #000 solid;
}

#services .txt {
width: 440px;
height: 500px;
border: 1px #000 solid;
display:table;
text-align:center;
}
.sub{
display:table-cell;
vertical-align:middle;
text-align:center;
}
<div id="services">

<div class="langelis">
<div class="icon">
<img src="images/knyg.jpg" alt="knyga" />
</div>

<div class="txt">
<div class="sub">
<h1>Lorem Ipsum</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s..</p>
</div>
</div>
</div>
<div class="clear"></div>
</div>

关于css - HTML/CSS 文本从 div 顶部对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15600772/

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