P粉1565327062023-09-05 11:54:34
可以使用 CSS 網格來完成:
.container { display: inline-grid; grid-template-columns: 1fr 1fr; } .button { padding: 10px 20px; white-space: nowrap; min-width: 130px; overflow: auto; } .button1 { background: red; } .button2 { background: green; }
<div class="container"> <div class="button button1">Short Text</div> <div class="button button2">A Long Text Button That Has Greater Width </div> </div>