カテゴリー:
CSS
閲覧数:1037 配信日:2013-07-26 06:01
Task
・「Bootstrap」CSSに記述されている「img { max-width: 100%;}」効果を打ち消したい
元CSS
/* Misc -------------------------------------------------- */ img { max-width : 100% ; } |
効果を打ち消すCSS
/* Misc -------------------------------------------------- */ img { max-width : none !important ; } |