0

我试图在 div 中居中图像,我使用了 display:table & display: table-cell 方法。它居中,但距离顶部有几个像素。我能做些什么来纠正这个问题?

CSS

html, body { 
    width: 100%;
    height: 100%;
}

body,html {
  margin: 0;
  padding: 0;
  color:#ffffff;
  text-align: center;
}

#wrapper{
text-align: left;
width: 940px;
margin: 0 auto;
margin-top: 22px;
background-color: #ffffff;
overflow: hidden;
}

header {
width: 908px;
height: 76px;
display: table;
border-style:solid;
border-top-width: 16px;
border-bottom-width: 16px;
border-top-color: #ffffff;
background-color: #cccccc;
}

#headerdiv { display: table-cell; vertical-align: middle; margin: 0; height: 28px; }



HTML

<div id="wrapper">

<header>
<div id="headerdiv"><img src="logotest.gif" height="28" width="180" alt="test"></div>
</header>

</div>
4

1 回答 1

1

添加

img {
    vertical-align:middle;
}

jsFiddle 示例

于 2013-04-05T20:05:02.080 回答