这是我的样式表。重复不起作用。我是编码的新手,我真的很困惑。请帮我。我知道这是一个非常简单的代码,但无法正常工作。我不知道我在做什么错。
background-color: white;
font-family: sans-serif;
margin-left: auto;
margin-right: auto;
max-width: 1024px;
min-width: 256px;
padding-top: 8px;
padding-bottom: 24px;
padding-left: 24px;
padding-right: 24px;
background: url("background_image.jpg")
background-repeat: no-repeat;
答案 0 :(得分:0)
在;
之后,您缺少分号(background: url("background_image.jpg")
)
如果您错过了元素后的分号,那么在{}
末尾之前的任何内容都将无效。
在单个样式元素或最后一个样式(例如以下示例)上,不需要分号 :
.class { color: red }
.class {
background-color: blue;
color: red
}
基本上,每个样式后都需要用分号,直到最后一个样式为止。尽管不建议您从最后一种样式中删除分号,因为稍后您(或代码的其他贡献者)在向元素中添加更多样式时,可能会忘记这一点。