uniapp 文字居中
时间: 2023-08-29 08:07:02 浏览: 270
jquery.valign插件实现图片,文字上下左右垂直居中
5星 · 资源好评率100%
在Uni-app中,可以使用以下方式将文字居中:
1. 在样式中设置text-align属性为center:
```
<style>
.center {
text-align: center;
}
</style>
<template>
<div class="center">
<p>居中文字</p>
</div>
</template>
```
2. 使用flex布局,将子元素居中对齐:
```
<style>
.center {
display: flex;
justify-content: center;
align-items: center;
}
</style>
<template>
<div class="center">
<p>居中文字</p>
</div>
</template>
```
阅读全文