2021年4月12日 星期一

設定元素高度為可用剩餘高度

<html style="height: 100%;">
<body style="height: 100%; display: flex; flex-direction: column;">
<div>...</div>
<div id="app" style="flex-grow: 1; flex-basis: 0; display: flex; flex-direction: column;">
  <div>...</div>
  <form id="form1" style="flex-grow: 1; flex-basis: 0; display: flex; flex-direction: column;">
      <b-table style="flex-grow: 1; flex-basis: 0; max-height:unset " sticky-header :items="items" :fields="fields" :filter="filter">
      </b-table>
  </form>
</div>
</body>
</html>

※設定 max-height:unset 覆蓋原預設值:300px

沒有留言:

vue3-simple-alert 學習心得

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