2021年1月21日 星期四

讓元素寬度自動設為剩餘可用寬度

<div style="display:flex">
<input type="text" style="width:4em">
<select style="flex-grow:1;flex-basis: 0;"></select> 
</div>

下拉選單寬度會等於div 扣除input 後剩餘寬度 (不可設定 width 否則會失效)

若要讓高度設為剩餘可用高度
<div style="height: 100%; display: flex; flex-direction: column;">
  <div>123</div>
  <div style="flex-grow: 1; flex-basis: 0;">剩餘可用高度</div>
</div>

沒有留言:

vue3-simple-alert 學習心得

官網 顯示提示輸入訊息並於按下確定時檢查是否有輸入,防止未輸入就按確定,且和按取消用不同邏輯處理 VueSimpleAlert.fire({     title: '請輸入原因',     input: 'text',     showCancel...