CSS 未在 MAMP 上呈现
我正在开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在浏览器中查看源代码并复制链接 URL。然后在此处进行验证。
View Source in your browser and copy the link URL. Then validate it here.
我认为主 css 文件必须位于模板文件夹的根目录中,并且您必须链接主 css 文件中的任何其他 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
Hope this was what you were looking for.
Good luck.
问题出在我的键盘上。它创建的字符看起来像双引号,但事实并非如此。在将它们设置为实际的双引号后,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!
看起来你有双引号而不是单引号。
应该是
希望这有帮助。
looks like you have double quotes instead of single.
Should be
Hope this helps.