我剛開始使用laravel進行一個項目,並且想爲我的主頁創建一個完整的背景圖像。我嘗試了正常的css html方法,但它不起作用。這裏是我的代碼 home.blade.php:我想從Laravel項目的刀片中放入背景圖像
<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;
}
我的形象是在資源/圖像/ JD.jpg; 和home.css在public/css/home.css中;
你需要給圖像 –
的完整路徑添加一些內容view_parent_image1格... – veera
Itried的完整路徑,但仍無法正常工作。我試圖在div中添加一些內容,但仍然沒有工作。 –