0
これらのdiv内にイメージとテキストの両方を垂直に配置したいと考えています。div内にこのテキストを縦に並べることができません
私はimg
をtop: 0; bottom: 0; margin: auto;
と動作させました。次に、line-height
とheight
をコンテナと同じ高さに設定してテキストを垂直に整列させようとしましたが、中心がうまくいきません。
これを動作させるにはどうすればよいですか?
<div class="border" style="border:1px solid red; width:100%; height:70px; position:relative;">
<div class="border" style=" border:1px solid red; float:left; width:25%; height:100%; position:relative;"><!--contenedor facebook-->
<img style="width:32px; height:32px; position:absolute; top:0; bottom:0; margin:auto;" src="">
\t <a href="tel:+34646611421"><span style=" position:absolute; left:33px; line-height:70px; height:70px; font-family:Oswald, sans-serif; font-size:24px;">646611421</span></a>
</div>
<div class="border" style=" border:1px solid red; float:left; width:25%; height:100%; position:relative;"><!--contenedor mail-->
<img style="width:32px; height:32px; position:absolute; top:0; bottom:0; margin:auto;" src="">
\t <span><a href="#" style="line-height:70px; height:70px; position:absolute; left:33px;">Mail Us</a></span>
</div>
</div>
は上下中央に見えますか? – BogdanC