空白:nowrap 與 flex: 1;子項寬度太小,無法容納文本
P粉776412597
P粉776412597 2023-09-04 13:30:47
0
1
479
<p>我找不到任何解決方案來讓 2 個相同大小的 div 將文字容納在一行中。看起來像空白:在我設定父親寬度:fit-content後,現在不考慮寬度。 </p> <p>它們應該盡可能小,大小始終相同,不要將文字換行到第二行。 </p> <p> <pre class="brush:css;toolbar:false;">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; }</pre> <pre class="brush:html;toolbar:false;"><div> <div class="button button1">Short Text</div> <div class="button button2">A Long Text Button That Has Greater Width </div> </div></pre> </p>
P粉776412597
P粉776412597

全部回覆(1)
P粉156532706

可以使用 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>
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板