gpt4 book ai didi

html - 无法弄清楚为什么我的 CSS 不会显示在我的 Chrome 浏览器中

转载 作者:行者123 更新时间:2023-11-28 16:27:49 25 4
gpt4 key购买 nike

在 html/css 方面,我绝对是初学者。在我跟随的示例中,我无法完全弄清楚为什么我的 css 不会显示在我的浏览器中。我一遍又一遍地检查代码,但它的格式与示例中的完全相同。只是想知道是否有什么我可能忽略了。感谢您的帮助!

<html>
<title>Starbuzz Coffee</title>
<style type=“text/css”>
body{
background-color: #d2b48c;
margin-left: 20%;
margin-right: 20%;
border: 2px dotted black;
padding: 10px 10px 10px 10px;
font-family: sans-serif;
}
</style>
</head>
</html>

最佳答案

你需要一个<body></body>也开<head>在关闭它之前(</head>)所以:

<html>
<head>
<title>Starbuzz Coffee</title>
<style type=“text/css”>
body{
background-color: #d2b48c;
margin-left: 20%;
margin-right: 20%;
border: 2px dotted black;
padding: 10px 10px 10px 10px;
font-family: sans-serif;
}
</style>
</head>
<body>

</body>
</html>

关于html - 无法弄清楚为什么我的 CSS 不会显示在我的 Chrome 浏览器中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41655833/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com