LoginSignup
50
43

More than 5 years have passed since last update.

Table内のtdのdiv要素にheight:100%をきかせる

Last updated at Posted at 2013-03-20

table要素のtdのなかにtdの高さいっぱいのdiv要素を作りたい場合はtable要素とtd要素にもheight:100%を指定しないといけない。
scssで書くと以下のようになる。

test.scss
table{
    height: 100%;
    td{
        height: 100%;
        div{
            height: 100%;
        }
    }
}
50
43
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
50
43