如何解决2个CDN链接产生的css冲突?

问题描述 投票:0回答:1

如果我评论其中一个影响我的引导样式的链接,我不小心粘贴了版本 4.5.2 和 5.3.3 的 2 个引导 CDN 链接

根本原因是我无法将 bg-danger 和 text-white 应用于表头,因此当我评论 CDN 链接版本 5.3.3 时,它正在应用,但也影响了我的一些引导样式和相同的情况版本 4.5.2。我希望只有一个 CDN 可以解决我的两个问题,但没有发生

bootstrap-4 bootstrap-5
1个回答
0
投票

为了保持一致性,最好坚持使用一个 Bootstrap 版本。由于 Bootstrap 5 与 4 相比有一些样式变化,您可能需要调整一些样式,

/* Target table head elements */
th.bg-danger {
  background-color: #dc3545 !important;
}

th.text-white {
  color: #fff !important;
}
© www.soinside.com 2019 - 2024. All rights reserved.