码迷,mamicode.com
首页 > 其他好文 > 详细

table-cell实现未知宽高图片,文本水平垂直居中在div

时间:2015-07-16 18:24:37      阅读:394      评论:0      收藏:0      [点我收藏+]

标签:

<BODY>
<h1>未知宽高的图片水平垂直居中在div</h1>
<!--box-outer-->
<div class="box-outer">
<div class="box">
<img src="images/01.jpg" />
</div>
</div>
<!--box-outer-->
<h1>多行文本平垂直居中在div</h1>
<!--box-outer-->
<div class="box-outer">
<div class="box">
<p>123456</p>
<p>123456</p>
<p>123456</p>
<p>123456</p>
</div>
</div>
<!--box-outer-->
</BODY>

 

=============================

 

h1{
text-align: center;
margin:30px auto;
}
.box-outer{
width: 400px;
height: 400px;
margin: 30px auto;
}
.box {
width: 400px;
height: 400px;
border: 1px #000 dashed;
text-align: center;
vertical-align: middle;
display: table-cell;
*display: block;
*font-size: 175px;
/*约为高度的0.873,200*0.873 约为175*/

*font-family: Arial;
/*防止非utf-8引起的hack失效问题,如gbk编码*/
}
.box img {
vertical-align: middle;
}

可惜使用table-cell不兼容ie6.使用table-cell了,margin不起作用,可以外嵌套一层div

 

table-cell实现未知宽高图片,文本水平垂直居中在div

标签:

原文地址:http://www.cnblogs.com/leshao/p/4651523.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!