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>