微信小程序--红色圆形数字冒泡

红色圆形数字冒泡

效果图:在这里插入图片描述
.wxss

.view_qipao{
  width: 35rpx;
  height: 35rpx;  
  background-color:red;  
  border-radius: 50%;  
  display: flex;
  align-items: center;
  justify-content: center;  
}

.text_qipao{
  color: white;
  font-size: 25rpx;
}

.wxml

<view class="view_qipao">
	<text class="text_qipao" >6</text>
</view>

猜你喜欢

转载自blog.csdn.net/wy313622821/article/details/107403118