如何将text组件以及image放在同一行
请问各位大佬如何将这三个内容以 “< > with ❤️in TMC” 显示?
wxml:
< image src = '/images/icon/字体代码 (1).png' style = "width:28rpx;height:28rpx" > </ image > < text class = "copyright" >with in TMC </ text > < image style = "width:28rpx;height:28rpx" class = "copyrightp" mode = "" src = '/images/icon/爱心 _实心 (1).png' > </ image > |
wxss:
.copyright { font-size : 28 rpx; color : #999 ; position : fixed ; bottom : 0 ; left : 0 ; right : 0 ; padding : 30 rpx; text-align : center ; } .copyrightp{ position : around; bottom : 0 ; left : 0 ; right : 0 ; padding : 30 rpx; align-items: around } |