栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

在100%高度的div中垂直居中放置文字?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

在100%高度的div中垂直居中放置文字?

这个答案不再是最好的答案…请参阅下面的flexbox答案!


为了使其完全居中(如大卫的回答中所述),您需要添加负的上边距。如果您知道(或强制)只有一行文本,则可以使用:

margin-top: -0.5em;

例如:

//CSS:html, body, div {    height: 100%;}#parent{    position:relative;    border: 1px solid black;}#child{    position: absolute;    top: 50%;        margin-top: -0.5em;        overflow: hidden;    white-space: nowrap;    width: 100%;    text-overflow: ellipsis;}//HTML:<div id="parent">    <div id="child">Text that is suppose to be centered</div></div>​

最初接受的答案不会在文本的中间垂直居中(其居中位置取决于文本的顶部)。因此,如果您的父母不是很高,则根本不会居中,例如:

//CSS:#parent{    position:relative;    height: 3em;    border: 1px solid black;}#child{    position: absolute;    top: 50%;}​//HTML:<div id="parent">    <div id="child">Text that is suppose to be centered</div></div>​


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/420954.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号