エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
実はもう <td> や <th> に position: relative; は普通に使える - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
実はもう <td> や <th> に position: relative; は普通に使える - Qiita
.sampleTable { border: none; table-layout: fixed; width: 400px; height: 400px; } .sampleTable td ... .sampleTable { border: none; table-layout: fixed; width: 400px; height: 400px; } .sampleTable td { position: relative; border: 1px #666 solid; } .sampleTable td::before { display: block; position: absolute; width: 20px; height: 20px; background: #f00; content: ""; } .cell01::before { bottom: 0; left: 0; } .cell02::before { top: 0; right: 0; } .cell03::before { top: 40px; right: 80px; } .cell04::be