我有一个加载两个样式表的HTML:
bootstrap.css
)site.css
)我在bootstrap.css
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
我需要在site.css
中插入哪些内容,以便在不修改site.css
的情况下优先考虑bootstrap.css
样式:
.modal-open .modal {
overflow-x: hidden;
overflow-y: scroll;
background-color: #D5D5D5
}
答案 0 :(得分:2)
您可以在网站!important
部分的引导样式表之后添加自定义样式表,而不是添加<head>
:
<link href="bootstrap.css" rel="stylesheet">
<link href="site.css" rel="stylesheet">
这样,对于任何重复的CSS选择器/属性,site.css
将覆盖bootstrap.css
答案 1 :(得分:1)
尝试添加!important
:
.modal-open .modal {
overflow-x: hidden !important;
overflow-y: scroll !important;
background-color: #D5D5D5 !important;
}
答案 2 :(得分:1)
您有几种选择:
bootstrap.css
,然后连接到site.css
- {{1将采取。site.css
(不是最佳选项,但您可以这样做)。!important
答案 3 :(得分:1)
首先,您应该在site.css
之后加载bootstrap.css
文件,如@luka建议的那样。这并不总能保证成功,因为Bootstrap的特殊性使得它的一些规则集非常高。它出现在您的具体情况,你应该没有任何问题。但Bootstrap的规则集有时交织在一起,可能会有一些你不知道或无法找到的东西可能阻止你的规则集成功。
如果您在site.css
无效后加载bootstrap.css
,请勿使用!important
。相反,加倍选择器:
.modal-open.modal-open .modal.modal { overflow-x: hidden; overflow-y: scroll; background-color: #D5D5D5 }
根据这个online tool,CSS特异性得分上方的选择器是4,而Bootstrap是2.这种技术多年来一直是我的100%。