我正在开发页面,现在以我的 css 样式我有这行代码
.flex-control-thumbs li {
width: 25%;
float: left;
margin: 0;
}
对于我的网页。现在,我的一些页面不需要这一行
width: 25%;
float: left;
有可能我可以在页面的内部 css 中覆盖它,这会导致原始行为被忽略吗?
!important
不推荐使用,但在这种情况下,我认为你应该 -
把它写在你的内部 CSS 中——
.flex-control-thumbs li {
width: auto !important;
float: none !important;
}
而不是覆盖,将其创建为不同的 css 并在您的元素中将其作为其他 css(多个 css)调用。
就像是:
.flex-control-thumbs li
{ margin: 0; }
内部 CSS:
.additional li
{width: 25%; float: left;}
<ul class="flex-control-thumbs additional"> </ul> /* assuming parent is ul */
You can create one more class naming
.flex-control-thumbs-without-width li {
width: auto;
float: initial; or none
}
Add this class whenever you need to override like below,
<li class="flex-control-thumbs flex-control-thumbs-without-width"> </li>
And do remove whenever you don't need for other <li>
是的,你确实可以。我可以想到三种方法来实现这一点。
笔记:
只需添加
.flex-control-thumbs li {
width: auto;
}
您可以在外部样式表之后的所需页面中添加样式,以便它们级联并覆盖第一组规则。
<link rel="stylesheet" href="allpages.css">
<style>
.flex-control-thumbs li {
width: auto;
float: none;
}
</style>
例子:
.parent-class .flex-control-thumbs li {
width: auto;
float: none;
}
演示:
.sample-class {
height: 50px;
width: 50px;
background: red;
}
.inner-page .sample-class {
background: green;
}
<div>
<div class="sample-class"></div>
</div>
<div class="inner-page">
<div class="sample-class"></div>
</div>