标签归档:!important
CSS !important的用法和效果
在 CSS(层叠样式表)中,!important 的作用是提高 CSS 样式规则的优先级。
例如:
#box{ width: 200px; /* 无效 */ width: 300px !important; /* 有效 */ }
在 CSS(层叠样式表)中,!important 的作用是提高 CSS 样式规则的优先级。
例如:
#box{ width: 200px; /* 无效 */ width: 300px !important; /* 有效 */ }