我对css很新,所以这可能是一个简单的答案.我有2个场景和1个作品,另一个没有.我希望有人可以帮助我.
作品:
<head>
<style type="text/css">
body {
background-image:url('views/default/images/home.jpg');
;}
</style>
</head>
Run Code Online (Sandbox Code Playgroud)
不工作:
<head>
<link rel="stylesheet" type="text/css" href="views/default/home_style.css" />
</head>
Run Code Online (Sandbox Code Playgroud)
在home_style.css>
body{
background-image:url('views/default/images/home.jpg');
margin-top: 0px !important;
padding-top: 0px !important;
}
Run Code Online (Sandbox Code Playgroud)