San*_*gar 0 html css xhtml html5
我正在尝试使用background-image设置背景图片:url但它不起作用.
<!doctype html>
<html>
<head>
<title>MyTitle</title>
<style type="text/css">
body{
<!-- background-color:green; -->
background-image:url("background.jpg");
<!-- color:white; -->
}
</style>
</head>
<body>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)
请帮助!!
<!-- comment -->
Run Code Online (Sandbox Code Playgroud)
CSS块中的注释语法无效.这可能会打破你的CSS规则.
尝试
/* comment */
Run Code Online (Sandbox Code Playgroud)