Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有以下代码
<div></div> div { background: pink; height: 100px; max-width: 20px; width: 200px; }
结果是一个宽度为 20px 的 div。(即使我添加!important到宽度值)
!important
小提琴
为什么 width 属性在这里不覆盖 max-width ?
因为max-width优先级高于width. 它的作用是防止width一个元素从某些边界增加。如果要width覆盖,请max-width删除max-width.
max-width
width
评论中给出的一个很好的链接