我刚开始在一个元素中使用 laravel,我希望我的主页有一个完整的背景图片。我尝试了普通的 css html 方法,但它不起作用。这是我的代码home.blade.php:
<html>
<head>
<title> AgroHelp Login</title>
<link href="{{asset('css/home.css')}}" rel="stylesheet" />
</head>
<body>
<div class='view_parent_image1'>
</div>
<p style ="text-align:center;">This is full screen</p>
</body>
这是 home.css
.view_parent_image1{
background-image: url('../resources/Image/JD.jpg');
background-size: cover;
}
我的图片在resources/Image/JD.jpg;home.css 在 public/css/home.css 中;
检查一下:
.view_parent_image1{
background: url('{{asset('uploads/'.$ourService->imageOne)}}');
background-size: cover;
}
谢谢
我是一名优秀的程序员,十分优秀!