* {
margin: 0;
padding: 0;
}
.big_box {
width: 200px;
height: 50px;
display: flex;
align-items: center;
justify-content: flex-start;
background-color: red;
}
.two {
padding: 10px 6px;
white-space: nowrap;
background-color: #fff;
}
.one {
white-space: nowrap;
overflow: hidden;
text-overflow:ellipsis;
}
</style>
</head>
<body>
<div class="big_box">
<div class="one">文文家具店砂进口的</div>
<div class="two">文家具店砂进口的</div>
</div>
</body>
</html>