我无法在Visual Studio代码中写入CSS边距

2fjabf4q  于 2023-04-01  发布在  其他
关注(0)|答案(1)|浏览(102)

我是Visual Studio代码的新手,正在学习HTML和CSS,我正在学习使用margins,然后我注意到我不能在Visual Studio代码中将margin写在CSS文件中。

.headerContainer{
    background-color: red;
    width: 40%
    margin:auto
}

它不断给予我错误分号预期css(css-semicolonexpected)
我希望有一些我需要改变在Visual Studio代码

w8f9ii69

w8f9ii691#

错误在您代码中,而不是在vs代码中

.headerContainer{ background-color: red; width: 40%; margin:auto; }

你还没有在宽度和边距属性上添加分号在css中每个属性都应该以分号结束

相关问题