作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个页面使用我定义的某些样式。
在同一页面上,我刚刚导入了一个使用自己样式的外部 jQuery 插件,例如,包括 <a>
。被我自己覆盖的标签样式。
如何确保我的样式表中的样式不会覆盖 jQuery 插件样式表中的样式?
最佳答案
1) 我的 jQuery 在我的样式表之后添加了一个样式表
Use !important inside your stylesheet to override any other styles.
a {
border: none !important; /* listen to me god dammit! */
}
2) 我的 jQuery 向我的元素添加了一个 style
属性,该属性覆盖我的样式。
Use the
style
attribute selector inside your stylesheet
a[style] {
border: none !important; /* I even override inline styles */
}
关于jquery - 我将一个 jQuery 插件导入到我的元素中,我的 <a> 标签 CSS 覆盖了它的 <a> 标签 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3937933/
我是一名优秀的程序员,十分优秀!