Laravel環境のvue.jsにてtableを描画しているのですが、動的に横列が増えた場合にテーブルの幅が変更されてレイアウトが崩れます。
th,tdセル幅を固定したいのですが、CSSについてご教授お願いします。
css
1html,body{ 2 min-width:1300px; 3 height:600px; 4} 5table{ 6 border:none; 7 border-collapse:collapse; 8 table-layout:fixed; 9 min-width:1280px; 10} 11thead, tbody { 12 display: block; 13 min-width:1280px; 14} 15tbody{ 16 overflow-x: visible; 17 overflow-y: scroll; 18 height: 70vh; 19 -ms-overflow-style: none; 20 scrollbar-width: none; 21} 22th{ 23 width:20px; 24} 25td{ 26 width:20px; 27}
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。