欢迎来到代码驿站!

当前位置:首页 >

小程序view容器中文字上下居中、左右居中显示

时间:2019-11-26 09:01:18|栏目:|点击:

本文详细举例说明了在小程序view容器中文字上下居中、左右居中显示的方法,需要的朋友赶紧收藏吧。

方法一、text-align、line-height

其中line-height的值必须等于容器的高度值。

.wxml代码:

<view class='text_align' >水平居中</view>  
<view class='line_height' >垂直居中</view>
<view class='center' >水平居中||垂直居中</view>

.wxss代码:
.text_align{
  width: 350rpx;
  height: 350rpx;
  background-color: gray;
  text-align: center;   /** 水平居中 **/
}
 
.line_height{
  width: 350rpx;
  height: 350rpx;
  background-color: orange;
  line-height: 350rpx;  /** 垂直居中 **/  
}
 
.center{
  width: 350rpx;
  height: 350rpx;
  background-color: brown;
  line-height: 350rpx;  /** 垂直居中 **/ 
  text-align: center;   /** 水平居中 **/ 
}
效果预览:

方法二、display flexible box模型

.wxml代码:

<view class='text_align' >水平居中</view>
<view class='line_height' >垂直居中</view>
<view class='center' >水平居中||垂直居中</view>
.wxss代码:
.text_align{
  width: 350rpx;
  height: 350rpx;
  background-color: gray;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.line_height{
  width: 350rpx;
  height: 350rpx;
  background-color: orange;
  line-height: 350rpx;  /** 垂直居中 **/  
}
.center{
  width: 350rpx;
  height: 350rpx;
  background-color: brown;
  line-height: 350rpx;  /** 垂直居中 **/ 
  text-align: center;   /** 水平居中 **/ 
}
效果预览:

上一篇:php的urlencode()URL编码函数浅析

栏    目:

下一篇:R语言ggplot2边框背景去除的实现

本文标题:小程序view容器中文字上下居中、左右居中显示

本文地址:http://www.codeinn.net/misctech/2164.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有