它应该适用于html email
,所以我不能使用align-items
和justify-content
我想让元素在同一条线上居中,左右对齐。
我试着设置display: inline-block;
让它们在同一行,但是text-align: start
和text-align: end
不起作用。
<div style="width: 100%; height: 65%; background-color: pink">
<div style="display: inline-block; text-align: start">
<p>Left and Center</p>
</div>
<div style="display: inline-block; text-align: end">
<p>Right and</p>
</div>
<div style="display: inline-block; text-align: end">
<p>Center</p>
</div>
</div>
1条答案
按热度按时间mrphzbgm1#
使用显示器:表格和显示:表格单元格并添加垂直对齐:中间。
[![在此输入图像说明][1]][1]
请尝试以下代码: