Skip to content

Instantly share code, notes, and snippets.

@catoidrobo
Created February 26, 2016 04:40
Show Gist options
  • Save catoidrobo/7ade372d72735d7ca2c8 to your computer and use it in GitHub Desktop.
Save catoidrobo/7ade372d72735d7ca2c8 to your computer and use it in GitHub Desktop.
cssで最大幅と最小幅を指定する
img{
max-width: 500px; /* 最大幅 */
min-width: 200px; /* 最小幅 */
}
/*
これつかえばimgが元のサイズで表示される
指定したimgが最大幅よりもあったとき、指定した最大幅で表示される
高さはmax-widthとmin-width
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment