将CSS添加到HTML中时出现问题,但它不起作用[关闭]

pnwntuvh  于 2023-05-19  发布在  其他
关注(0)|答案(1)|浏览(99)

**关闭。**这个问题是not reproducible or was caused by typos。目前不接受答复。

此问题是由打印错误或无法再重现的问题引起的。虽然类似的问题可能是on-topic在这里,这一个是解决的方式不太可能帮助未来的读者。
3天前关闭。
Improve this question
我有一个小的初学者HTML和CSS练习。HTML在我的代码中,但是当我在head标签中使用标签样式添加CSS时,CSS不起作用。代码对我来说似乎很好。我尝试在许多浏览器中运行此代码,但问题仍然存在。请检查我的代码并给予我任何建议或解决方案。谢谢

<head>
  <!-- This is a comment, it's visible in the source but not on the page -->
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Hello World</title>
  <style>
    body {
    font-family: Arial, Helvetica, sans-serif;
    }
    * {
    box-sizing: border-box;
    }
  </style>
</head>
kx1ctssn

kx1ctssn1#

它很有效。你可能只是想确保你有一些明显的东西,这样你就可以告诉它很有效。我只是添加color: red来演示。

<head>
    <!-- This is a comment, it's visible in the source but not on the page -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Hello World</title>
    <style>
        body {
        font-family: Arial, Helvetica, sans-serif;
        color: red;
        }

        * {
        box-sizing: border-box;
        }
        </style>
</head>
<body>
   Give me style. I want style
</body>

相关问题