0
画像を折り返しまたはオーバーフローさせずに画像の左右に揃える方法はありますか?下の現在のコードでは、テキストがエッジに揃わず、ユーザーの設定に応じて小さすぎたり大きすぎたりすることがあります。画像の幅とテキストの位置合わせ
.logo-table {
margin-left: 50px;
position: absolute;
top: 20px;
width: 195px;
}
.logotext {
color: #fff;
font-size: 1em;
font-weight: bold;
text-align: center;
}
.headerlogo {
width: 195px;
}
<div class="logo-table">
<img src="/images/header.png" class="headerlogo" align="middle">
<p class="logotext">Neque porro quisquam est</p></td>
</div>