如图,两个箭头之间的距离如何缩小?
源码:
<view class="score">
<view style="flex:1;" bindtap="plusA" bindlongpress="reduceA">1</view>
<view style="flex:0.1;" bindtap="test" >:</view>
<view style="flex:1;" bindtap="plusB" bindlongpress="reduceB">2</view>
</view>
.score{
height: 300rpx;
font-size:300rpx;
display: flex;
flex-direction: row;
text-align: center;
margin-top: 0rpx;
position: relative;
background-color: blueviolet;
}
感谢!
把“1”换成“2”呢?