为什么我的 css 不能在 mamp 中渲染?

Why can I not get my css to render in mamp?

我已经使用 Mamp 在我的 mac 上本地设置了 wordpress,除 css 文件外,其他所有文件都无法正常工作。我可以正确获取 CSS 文件的 link,并且在检查 Chrome 和 Safari 中的代码时,它显示正确的 CSS 文件。但是无论我写什么类型的 CSS 代码,它都不会显示在我的页面上。

这是我的 header.php 文件

<html>
<head>
    <meta charset="utf-8"/>
    <link rel=”stylesheet” href="<?php bloginfo('stylesheet_url'); ?>" type=”text/css” media=”screen” />
    <title>My first website</title>
</head>
<body>

这是我要渲染的CSS:

* {
    margin: 0;
    padding: 0;
}

#wrapper {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

所以当它在浏览器中显示代码时,它看起来像这样

<html>
<head>
    <meta charset="utf-8"/>
    <link rel=”stylesheet” href="http://localhost/firstsite/wp-content/themes/newtheme/style.css" type=”text/css” media=”screen” />
    <title>My first website</title>
</head> ```

I can even click the CSS file from the inspected code and will then see the right file. What am I doing wrong here? PS. I have tried hard refresh of Chrome.

解决方案是按照@gtamborero 的建议错误使用引号。谢谢你。现在浏览器正在完美读取 CSS。