作为uniapp开发,使用了内置的css样式 class=uni-list-cell,把行间距调成1.5倍
时间: 2024-02-12 20:05:38 浏览: 124
uni-app中使用scss的示例代码
5星 · 资源好评率100%
`uni-list-cell` 是 uni-app 内置的组件样式,其实际实现是 `flex` 布局,所以设置行高需要使用 `align-items` 属性。具体实现代码如下:
```html
<view class="uni-list-cell" style="align-items: stretch; line-height: 1.5;">
<view>这是一段文字</view>
</view>
```
其中,`align-items` 属性用于设置交叉轴上的对齐方式,这里设置为 `stretch`,表示拉伸填充整个交叉轴(即高度)。然后通过设置 `line-height` 属性为 `1.5`,实现行高为字体大小的1.5倍。
如果你想在整个应用中统一设置行间距,可以在全局样式中设置:
```css
/* App.vue */
<style lang="scss">
/* 设置全局行高 */
.uni-list-cell {
align-items: stretch;
line-height: 1.5;
}
</style>
```
阅读全文