码迷,mamicode.com
首页 > Web开发 > 详细

CSS:文字水平居中的写法

时间:2018-02-23 11:01:55      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:com   enter   play   png   图片   red   color   round   gpo   

<view class=‘kk‘>
水平垂直居中文字
</view>
.kk{
  border: 1px solid #000000; 
  width: 200px; 
  height: 200px;
  margin: 0 auto;
  text-align: center;
  line-height: 200px;
}

其中line-height需要注意下。

 

<view class="section">
  <view class="section__title">flex-direction: row</view>
  <view class="flex-wrp" style="flex-direction:row;">
    <view class="flex-item bc_green">1</view>
    <view class="flex-item bc_red">2</view>
    <view class="flex-item bc_blue">3</view>
  </view>
</view>
<view class="section">
  <view class="section__title">flex-direction: column</view>
  <view class="flex-wrp" style="height: 300px;flex-direction:column;">
    <view class="flex-item bc_green">1</view>
    <view class="flex-item bc_red">2</view>
    <view class="flex-item bc_blue">3</view>
  </view>
</view>

 

.flex-wrp {
  display: flex;
}

.flex-wrp .flex-item.bc_green {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: green;
}

.flex-wrp .flex-item.bc_red {
  width: 100px;
  height: 100px;
  background-color: red;
  text-align: center;
  line-height: 100px;
}

.flex-wrp .flex-item.bc_blue {
  width: 100px;
  height: 100px;
  background-color: blue;
  text-align: center;
  line-height: 100px;
}

技术分享图片

 

CSS:文字水平居中的写法

标签:com   enter   play   png   图片   red   color   round   gpo   

原文地址:https://www.cnblogs.com/herizai/p/8460719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!