div 中如何让图片居中?
如题,也就是图片处于这个DIV的中心。
2010-09-01 12:41
程序代码:<style>
.spancss{display:inline-block;*display:inline;*zoom:1;height:100%;width:1px;margin-left:-1px;vertical-align:middle}
*{padding:0px;margin:0px;}
.conn{width:500px;height:500px;border:1px solid #000;text-align:center;}
.conn img{width:400px;height:400px;vertical-align:middle;}
</style>
<div class="conn"><img src=""><span class="spancss"></span></div> 水平居中好说,主要是垂直居中怎么设置。用到了vertical-align属性。
2010-09-01 14:33

2010-09-01 17:12

2010-09-01 17:42
2010-09-01 21:01
2010-09-02 08:01
2010-09-02 08:29