⼩程序列表项的右侧带箭头怎么做?在.wxml⽂件中新增⼀个标签<view class='arrow'/>
<view class='list'>
<view class='list1'>
<image src='../../images/list.jpg'></image>
<text>我的发布</text>
团购小程序怎么做<view class='arrow'></view>
</view>
</view>
然后在.wxss中修饰
.arrow{
width: 10px;
height: 10px;
border-top: 2px solid #999;
border-right: 2px solid #999;
position: absolute;
right: 20rpx;
transform: rotate(45deg);
margin-top:10rpx;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。