文字图片居中对齐uniapp
时间: 2023-08-31 07:08:20 浏览: 654
图片和文字居中显示
在uni-app中,可以使用flex布局来实现文字和图片的居中对齐。具体的步骤如下:
1. 在需要居中对齐的父容器上添加样式`display: flex; justify-content: center; align-items: center;`,这样子元素就会在父容器中水平和垂直居中对齐。
2. 在父容器中添加子元素,可以是文字或图片,例如:
```
<template>
<view class="container">
<text class="text">居中对齐的文字</text>
<image class="image" src="/static/logo.png"></image>
</view>
</template>
```
3. 添加对应的样式,例如:
```
<style scoped>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* 可根据实际需求调整高度 */
}
.text {
font-size: 16px;
}
.image {
width: 100px;
height: 100px;
}
</style>
```
这样就可以实现文字和图片在父容器中居中对齐了。需要注意的是,代码中的示例只是一种实现方式,你可以根据实际需求进行调整。
阅读全文