我正在尝试基于主要依靠Bootstrap的CMS修改我的网站。我看到在编译sass文件之后,在已编译的CSS中,我同时具有默认的css选择器和覆盖的选择器。例如:
template.css?d544b92…:12881
a {
color: #1d60a1;
text-decoration: none;
background-color: transparent;
}
template.css?d544b92…:264
a {
color: #1d60a1;
text-decoration: none;
background-color: transparent;
}
按预期使用了覆盖的文件,但尽管如此,在编译文件中同时包含这两个文件会使它更大。如果有人能给我一点帮助,我将不胜感激。这是bootstrap(v4)的正常行为,还是我做错了什么?