蓝色图片无法写在文字前面
wxml
<view class="container">
<view class="box">
<text class="title">我要缴费</text>
<text class="copy">可按照缴费单上的识别码查询或者按照学生编号查询缴学费或其他费用</text>
</view> </view>
wxss
.container {
display: flex;
flex-direction: row;
height: 290rpx;
background: rgb(255, 255, 255); margin: 40rpx; border-radius: 8rpx;
}
.box {
width: 480rpx;
margin-left: 80rpx;
display: flex;
flex-direction: column; justify-content: center; font-size: 34rpx;
}
.title{
font-size: 34rpx;
word-break:break-all;
line-height: 60rpx;
letter-spacing:5rpx;
}
.copy {
font-size: 30rpx;
word-break:break-all;
color: #858585;
letter-spacing:4rpx;
}
.container image{ width: 50rpx;height: 50rpx;}