我在从.css文件到.html文件引用我的ID和类时遇到麻烦

时间:2019-07-02 13:38:45

标签: html css

h1 {
    background-color: chocolate
}
img {margin: 20px
}
#testing { color: white; }
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Zoo Animals</title>
    <link rel="stylesheet" href="CODECA/style.css">
</head>
<body>
    <div id="testing">
        <h1>All Animals Are Brethren</h1>
        <p>Play With a Bear Today</p>
            <img src="https://images.pexels.com/photos/46175/bear-brown-bear-animal-teddy-bear-46175.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" height="450px
            " alt="cookie">
    </div>
    <h2 class="bleak">
        <p>what else</p>
    </h2>
</body>
</html>

当我在html文件中创建ID时,此操作成功。我在终端中没有收到错误消息。但是,当我在.css文件中输入#id1 {color} white时,什么也没有发生。

我尝试重新安装该程序并尝试使用其他程序,因此我认为这可能是我做错了。

每次我尝试将代码粘贴到问题中时,都会说我的格式错误。我对编码真的很陌生,但是我也真的想学习。在打this之前,我在其他所有方面都做得很好。

我附加了一张图像,该图像并排显示html doc和css。我希望这很清楚。

Snapshot of Code

1 个答案:

答案 0 :(得分:1)

您的语法应为

    #id1 {color: white};

   .className {color: white};

请注意,如果您在白色背景上使用此特定样式,则文本将消失。