私は div タグを持っています。彼には span と img タグがあります。span と img が div の垂直方向の中央になるようにしたいのですが、これは真実ですが、span タグmargin-top
が機能せず、span タグを中央に配置できません。解決策とは?
<div>
<span>
some text
</span>
<img src="..." />
</div>
CSS:
div {
width: 200px;
height: 40px;
background: #ccc
}
span {
margin-top: -10px;
}
img {
width:20px;
height: 20px;
margin-top: 10px;
}