CSS 未在 MAMP 上呈现

发布于 2024-08-25 10:21:47 字数 313 浏览 4 评论 0原文

我正在开发一个 WordPress 博客。我按如下方式嵌入样式表:

<link rel=”stylesheet” href="<?php bloginfo("stylesheet_url"); ?>" type=”text/css” media=”screen” />

但是,CSS 根本不渲染。我已经检查过 href 中输入的 URL 是否正确。 CSS 已找到。但是,它不会在所有浏览器中呈现。我完全被难住了,并且非常感谢能在正确的方向上推动我。我正在使用 MAMP 1.8.3 和 Wordpress 1.2.9。

I'm working on a Wordpress blog. I'm embedding a stylesheet as follows:

<link rel=”stylesheet” href="<?php bloginfo("stylesheet_url"); ?>" type=”text/css” media=”screen” />

However, the CSS doesn't render, at all. I've checked that the URL that is being put in the href is correct. The CSS is found. But, it doesn't render, in all browsers. I am utterly stumped, and would really appreciate a nudge in the right direction. I'm using MAMP 1.8.3, and Wordpress 1.2.9.

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

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

发布评论

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

评论(4

小帐篷 2024-09-01 10:21:48

在浏览器中查看源代码并复制链接 URL。然后在此处进行验证。

View Source in your browser and copy the link URL. Then validate it here.

旧瑾黎汐 2024-09-01 10:21:48

我认为主 css 文件必须位于模板文件夹的根目录中,并且您必须链接主 css 文件中的任何其他 css 文件

示例

@import url('css/reset.css');
@import url('css/typography.css');

希望这就是您正在寻找的内容。
祝你好运。

I think the main css file must be in the root of the template folder and you will have to link any other css files within the main css file

Example

@import url('css/reset.css');
@import url('css/typography.css');

Hope this was what you were looking for.
Good luck.

抚你发端 2024-09-01 10:21:48

问题出在我的键盘上。它创建的字符看起来像双引号,但事实并非如此。在将它们设置为实际的双引号后,CSS 就起作用了。谢谢大家的帮助!

The problem was with my keyboard. It created characters that looked like double quotes, but weren't. Upon making them actual double quotes, the CSS worked. Thanks for the help, everyone!

山川志 2024-09-01 10:21:48

看起来你有双引号而不是单引号。

应该是

('stylesheet_url');

希望这有帮助。

looks like you have double quotes instead of single.

Should be

('stylesheet_url');

Hope this helps.

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