这个东西多看看代码就可以了
<!DOCTYPE html>
<html>
<head>
<style>
.footer {
width: 300px;
height: 20px;
display: flex;
border: 1px solid #000;
}
.count {
background: #3cc8b4;
flex: 1 1 auto;/*flex属性是flex-grow, flex-shrink 和 flex-basis的简写,默认值为0 1 auto。后两个属性可选。*/
width: 50px;
}
.icon {
flex-grow: none; /*icon设置为固定元素,不会自适应增长*/
background: green;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 50px;
}
.title-container {
background: #9bc;
max-width: 200px;
}
.title {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
</style>