css中div的高度是用百分比设置的,怎样让div内的元素垂直居中? 50

css中div的高度是用百分比设置的,怎样让div内的元素垂直居中?... css中div的高度是用百分比设置的,怎样让div内的元素垂直居中? 展开
 我来答
人啦哈w
2016-07-13 · 知道合伙人软件行家
人啦哈w
知道合伙人软件行家
采纳数:3947 获赞数:19705

向TA提问 私信TA
展开全部
方法一:
用茄带一个“ghost”伪元素(看不见的伪元素)和 inline-block / vertical-align 可以搞定居中,非常巧妙。但是这个方法要求待居中的元素是 inline-block,不是一个真正通用的方案。
html如下:
<div class="block" style="height: 300px;">
<div class="centered">
<h1>haorooms案例题目</h1>
<p>haorooms案例内容,haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容haorooms案例内容</p>
</div>
</div>
css如下:
/* This parent can be any width and height */
.block {
text-align: center;
}
/* The ghost, nudged to maintain perfect centering */
.block:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -0.25em; /* Adjusts for spacing */
}
/* The element to be centered, can
also be of any width and height */
.centered {
display: inline-block;
vertical-align: middle;
width: 50%;
}
方法二:
可以用table布局方法,但是这种方法也有局限性!
写法如下:
<table style="width: 100%;">
<tr>
<td style="text-align: center; vertical-align: middle;">
Unknown stuff to be centered.
</td>
</tr>
</table>
由于table写法比较费时,你也可以用div代替table,写法如下:
html:
<div class="something-semantic">
<div class="something-else-semantic">
Unknown stuff to be centered.
</div>
</div>
css:
.something-semantic {
display: table;
width: 100%;
}
.something-else-semantic {
display: table-cell;
text-align: center;
vertical-align: middle;
}
方法三,终极解决方法:
以上2中方纤磨法可能都有其局限性,我介绍的第三中方法是比较成熟的不是固定高宽div的垂直居中的方法!但是方法是css3的写法,想兼容IE8的童鞋们,建议用上面的方法!
方法和我们固定高宽的差不多,但是不用margin我们用的是 translate()
demo如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<颤竖芦html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>haorooms不固定高度div写法</title>
<style>
.center {
position: fixed;
top: 50%;
left: 50%;
background-color: #000;
width:50%;
height: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
}
</style>
</head>
<body>
<div class="center"></div>
</body>
</html>
我上面的css只是针对webkit内核的浏览器,其他内核浏览器写法如下:
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
婉丽还完满丶小兔子0
2016-06-22
知道答主
回答量:14
采纳率:0%
帮助的人:10万
展开全部
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
div 丛谈散{
height: 80%;//由于高度百分比本身是不能被撑大的需要子元素渗氏影响
width: 80%;
margin: 0 auto;
background: red;
overflow:hidden;
}
p {
text-align: center;
padding: 5%;// 撑开父辈元素高度
}
</style>
</head>
<body>
<div>
<侍橡p>22</p>
</div>
</body>
</html>

//或者也可以使用 position:absolute; top:0;bottom:0;也可以.

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
澄季同u4
推荐于2017-12-15 · TA获得超过137个赞
知道小有建树答主
回答量:1008
采纳率:0%
帮助的人:227万
展开全部
这个很难做到,vertical-align属性州灶说是用来让元素垂直居中,但是很多时候都是不起作用的。 现在唯一的方法只能控制DIV的margin-top属性来让DIV看起来垂册肆扮直居中(但是不是百分百居中,只雹掘是看起来像是居中)4846
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
信仰那天地
2016-07-01 · TA获得超过216个赞
知道小有建树答主
回答量:300
采纳率:0%
帮助的人:98.4万
展开全部
div内的敬岩燃元素如果只是文字 就用 text-align:center; height:100%;line-height:100%;
如果div内的元素枣纯是div 或者其他盒子,考虑到兼容性,亮虚最好用margin-top自动测试调整
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友a6c389e096
2016-06-23
知道答主
回答量:27
采纳率:100%
帮助的人:12.3万
展开全部
做了一年前段,还从来没有把高度设置成百分比。响应式页面可以设置宽帆余搭度为百分比,高度都是固定的。
假设如果父div高度为height:50px;宽度为:width:200px;
1,如果div内为文本,可以设置包含文本的元素:line-height:50px; text-align:center;
2,如果div内的子元素为块级元素或宽毁悄度为百分比,需要通过position定位left:50%;margin-left:-50px如果态拿宽度不是百分比可以直接用margin计算居中

如果不确定高度,可以用margin,padding撑开
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(6)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式