62,271
社区成员
发帖
与我相关
我的任务
分享
1.
<div style="text-align:center">
<Img>
<DIV>
2.
<DIV>
<IMG style="margin:5px auto" >
</div>
仍选一种,或两种方法结合起来.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Div+CSS图片垂直居中</title>
</head>
<style>.box {
display: table-cell;vertical-align:middle;text-align:center;*display: block;
*font-size: 175px;*font-family:Arial;width:220px;height:200px;
border: 3px solid #ccc; }.box img {vertical-align:middle; border:0;}
</style>
<body>
<div class="box">
<a href="/" target="_blank"><img src="/images/logo.gif" /></a>
</div>
</body>
</html>