uni-app 左图右文字布局

效果图:


企业微信[email protected]

css代码:

.uni-list-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    margin-top: 10px;
}
.uni-thumb {  //紫色边框图片样式
    flex-shrink: 0;
    margin-right: 10px;
    width: 100px;
    height: 75px;
    border-radius: 5;
    overflow: hidden;   
    border: 2px #f517f5 solid;
    image {
        width: 100%;
        height: 100%;
    }
}

你可能感兴趣的:(uni-app 左图右文字布局)