我找不到任何解決方案來讓 2 個相同大小的 div 將文字容納在一行中。看起來像空白:在我設定父親寬度:fit-content後,現在不考慮寬度。
它們應該盡可能小,大小始終相同,不要將文字換行到第二行。
div { display: flex; width: fit-content; } .button { padding: 10px 20px; flex: 1; white-space: nowrap; min-width: 130px; width: fit-content; } .button1 { background: red; } .button2 { background: green; }
可以使用 CSS 網格來完成: