LoginSignup
1
1

More than 5 years have passed since last update.

CSSで最低限の高さを指定し、それ以上の場合はフレキシブルなBOXを作る。

Posted at

cssで最低限の高さをBOXに作ってやり、
それ超えたら、フレキシブルにするCSSです。
久々にこれやって、あれ?って思ったので備忘録として書いておきますよ。

やるのは簡単これだけ!

css.style.css
.box{
min-height:50px; 
height:auto !important; 
height:50px;
}
1
1
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
1
1