使用 html5reset 复制 css 行

发布于 2024-11-03 23:40:37 字数 298 浏览 0 评论 0原文

我第一次使用 http://html5reset.org 中的 html5reset。我看到的问题是文件 core.css 被加载两次或其他什么。如果你拉起 firebug,你可以看到你点击的每个元素都有一个 core.css 和一个 core.css #2。

我无法弄清楚是什么导致它加载两次。我的网站是 http://ratemymechanic.us

I'm using html5reset from http://html5reset.org for the first time. The issue I'm seeing is that the file core.css is being loaded twice or something. If you pull up firebug, you can see that for every element you click on there is a core.css and a core.css #2.

I can't figure out what is causing it to load twice. My site is http://ratemymechanic.us

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我在您的 HTML 标记中发现了这一点:

<link rel="stylesheet" href="http://ratemymechanic.us/assets/css/main.css" /> 
<link rel="stylesheet" href="http://ratemymechanic.us/assets/css/core.css" /> 

main.css 中,您也导入了 core.css,因此您应用了两次:

@import url("core.css");

I have found this in your HTML markup:

<link rel="stylesheet" href="http://ratemymechanic.us/assets/css/main.css" /> 
<link rel="stylesheet" href="http://ratemymechanic.us/assets/css/core.css" /> 

in main.css, you're importing core.css too, hence you're applying it twice:

@import url("core.css");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文