微信小程序常用样式汇总
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序常用样式汇总相关的知识,希望对你有一定的参考价值。
11.文字间距设置:letter-spacing:2rpx;
12.垂直居中(此元素放置在父元素的中部):
vertical-align: middle;www.zhaoweb.cn
13.设置子元素Image样式:
.circle-img image{
width:90rpx;
height: 90rpx
}
14.最底层垂直居中横线样式:
复制代码
.horizon{
width:660rpx;
height: 2rpx;
background-color: #e5e5e5;
vertical-align: middle;
position:relative;
top:46rpx;
margin: 0 auto;
z-index: -99zhaoweb.cn
}
复制代码
15.图片居中覆盖:
复制代码
.audio{
width:102rpx;
height:110rpx;
position: absolute;
left: 50%;
margin-left: -51rpx;//经典水平居中方式
top:180rpx;
margin-top: 20rpx;
opacity:0.6;//透明度
}
以上是关于微信小程序常用样式汇总的主要内容,如果未能解决你的问题,请参考以下文章