设置两个div为inline-block。
<div style="width: 100%">
<div style="white-space: nowrap; width: fit-content">
<div class="title-style">
<span>xxx</span>
</div>
<div style="display: inline-block;">
<span>xxx</span>
</div>
</div>
</div>
<style>
.title-style {
padding-left: 20px;
display: inline-block;
vertical-align: top;//用来调整偏移位置
min-width: 290px;
}
</style>