写css代码的时候,有很多时候,多个css放在一行,如果字体大小不一样,并且有图片的话,那么上下不居中是很不好处理的问题。最近看到了以下处理办法:
1、图片和文字居中对齐
<view class="itemIcon">
<image src="../../icons/star.png" style="width: 15px;height: 15px;"></image>
<text class="tipFont">文字内容</text>
</view>
让图片和文字上下居中就可以采用:
.itemIcon{
display: flex;
align-items: center;
height: 16px;
}
2、如果是需要左右分开,一左一右,不推荐使用float,因为float设置了之后,该元素的高度就为0了,用流式布局就不行了,而且为了屏幕自适应,尽量不要设置高度,可以采用以下css样式实现
.itemIcon{
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
}