h1 が css でページのサイズ変更をラップしている場合でも、h1 以外の画像を垂直方向に中央揃えするにはどうすればよいですか? ここでjsfiddleを参照してください-> http://jsfiddle.net/JJvG6/
HTML :
<div>
<div id="img"><img></img></div>
<div id="h1"><h1>This Div and the div with the picture should always be vertically centered, when page resizes and h1 wraps.</h1></div>
</div>
CSS :
div {
margin: 5px;
border: 1px solid black;
}
div #img {
float: left
}
ありがとう