<p>小程序中给标签或者button添加阴影 box-show</p><p>//WXML</p><pre class="brush:xml;toolbar:false"><viewclass='cont'>
<viewclass='zrf'>
我在这里
</view>
</view></pre><p></p><p></p><p></p><p>/*WXSS */</p><pre class="brush:cpp;toolbar:false">
/*视图*/
.cont{
position:relative;
width:100%;
height:400rpx;
line-height:200rpx;
text-align:center;
background-color:yellow;
}
/*居中*/
.zrf{
position:relative;
top:20rpx;
width:200rpx;
height:200rpx;
display:inline-block;
/*颜色自定义---尺度自己调*/
box-shadow:0px2px5px5pxred;
}</pre>