我有一個問題,它驅使我堅果。我開始學習RoR,我不知道爲什麼我無法在Bootstrap 3應用程序上設置背景圖像。我嘗試了一切,但圖像不「加載」。Bootstrap背景圖片3
我用這個網站做的:http://css-tricks.com/perfect-full-page-background-image/
可能是什麼做錯了什麼?
**如果我將html更改爲body,則沒有任何反應。同樣的事情,如果我刪除引號或不。
在此先感謝!
更新:**對不起。 Newb錯誤。圖像已損壞。有 問題。感謝所有幫助。
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 101 Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<style>
html {
background: url('images/fondo.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
</head>
<body>
<h1>Hello, world!</h1>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://code.jquery.com/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
有趣的是,如果我使用任何URL圖像像voices.suntimes.com/wp-content/uploads/2013/08/...,一切工作正常。問題是與那些在我的電腦圖像
您是否在使用導軌? – Philip7899
是@ philip7899,鐵軌! –
和我所有的圖片都在app/assets/images目錄中。 @ Philip7899 –