例子1
不确定高度垂直居中
代码如下:
/* center < */
.vetically {
vertical-align: middle;
display: table-cell;
*position: relative;
}
.vetically_c {
display: block;
margin: 0 auto;
text-align: center;
*position: absolute;
*top: 50%;
*left: 50%;
*margin-top: expression(-(this.height ) / 2);
*margin-left: expression(-(this.width ) / 2);
}
/* center > */
例子2
标准浏览器的情况还是和上面一样,不同的是针对ie6/ie7利用在img标签的前面插入一对空标签的办法。
代码如下:
<html xmlns=>
<head>
<meta http-equiv=content-type content="text/html; charset=gbk""c2021.aspx" target=_blank>IT技术专栏