我无法使用 css 设置背景图像
I can't set an image for background using css
我有一个 laravel 5 项目,我想在其中设置和自定义图像作为背景,但我做不到。我可以将背景设置为一种颜色 - 这很好用,但当我使用图像时却不行...
这是我的代码:
<!DOCTYPE html>
<html>
<head>
<title>title</title>
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
<style>
body{
background: url("/resources/assets/images/anders.png") no-repeat;
}
</style>
</head>
<body>
@yield('content')
</body>
</html>
使用 .root url 到站点。在资源之前。
body{
background: url("./resources/assets/images/anders.png") no-repeat;
}
我有一个 laravel 5 项目,我想在其中设置和自定义图像作为背景,但我做不到。我可以将背景设置为一种颜色 - 这很好用,但当我使用图像时却不行...
这是我的代码:
<!DOCTYPE html>
<html>
<head>
<title>title</title>
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
<style>
body{
background: url("/resources/assets/images/anders.png") no-repeat;
}
</style>
</head>
<body>
@yield('content')
</body>
</html>
使用 .root url 到站点。在资源之前。
body{
background: url("./resources/assets/images/anders.png") no-repeat;
}