正如你所知,即使我设置了这个代码
text-align: center;
图片是正确的,但文字位于底部。如何使其垂直对齐到图像的中间。
* {
margin: 0;
padding: 0;
}
#header {
width: 100%;
height: auto;
position: fixed;
top: 0px;
background-color: black;
color: white;
text-align: center;
}
<div id="header">
test
<img src="../immagini/logo.png" height="100px" style="padding: 0px 20px">test
</div>
答案 0 :(得分:1)
这太简单了。 只需使用:
img {
vertical-align:middle;
}