uniapp文本内容两端对齐
文章描述:
uniapp如何让文本文字两端对齐
template
<template>
<view class="page">
<view class="aboutFont">
对真正的成功者来说,不论他的生存条件如何,都不会自我磨灭自身潜藏的智能,不会自贬可能达到的人生高度。他会锲而不舍地去克服一切困难,发掘自身才能的最佳生长点,扬长避短地、踏踏实实地朝着人生的最高目标坚定地前进!
</view>
</view>
</template>
css
.page{
padding: 10upx 34upx;
}
.aboutFont {
font-size: 28rpx;
font-weight: 400;
color: rgba(51, 51, 51, 1);
line-height: 50rpx;
text-indent: 60rpx;
text-align:justify;
text-align-last:left;
}
发布时间:2021/09/10
发表评论