android横向scrollview被挤成一坨
.tags { width : 100% ; } .list-tags-link { display : flex; box-sizing: content-box; min-width : 80 rpx; padding-right : 10 rpx; padding-left : 10 rpx; flex- direction : column; align-items: center ; justify- content : center ; } .list-tags-img { height: 40px; width: 40px; border-radius: 50%; } .list-tags { margin-top : 5px ; margin-bottom : 5px ; width : 100% ; height : 60px ; } .list-tags .list-tags-img { height : 40px ; width : 40px ; border-radius: 50% ; } .list-tags .list-tags-text { color : #878787 ; text-align : center ; overflow : hidden ; white-space : nowrap ; text- overflow : ellipsis; font-size : 22 rpx; margin : 5px 0 0 0 ; } <template name= "tags" > <view class= "list-tags-main" > <navigator wx:for= "{{tags}}" wx:key= "id" wx:for-index= "index" wx:for-item= "item" url = "/pages/tags/tags?id={{item.id}}&show={{show}}&title={{item.title}}&classid={{classid}}" class= "list-tags-link" > <image src= "{{item.image}}" class= "list-tags-img circle" mode= "aspectFill" /> <text class= "list-tags-text" >{{item.title}}</text> </navigator>
|