本文参考链接理解css中min-width和max-width,width与它们之间的区别联系
width
与height
的情况是一致的,下面以width
为例进行说明。
min-width比width大时
min-width
的优先级高于width
,即使有!important
也是如此。
1 | <div></div> |
min-width比max-width大时
min-width
的优先级高于max-width
,即使有!important
也是如此。
1 | <div></div> |
max-width比width小时
max-width
的优先级高于width
,即使有!important
也是如此。
1 | <div></div> |