gpt4 book ai didi

css - Bootstrap :jumbotron background image not working?

转载 作者:行者123 更新时间:2023-11-28 11:30:50 24 4
gpt4 key购买 nike

我在使用 bootstrap-css 框架将背景图像添加到 jumbotron 类时遇到问题,我已将我的页面链接到 bootstrap cdn。在我添加的页面样式标签中

.jumbotron {
height: 500px;
display: flex;
align-items: center;
background: url("C:\Users\burningknight7\Desktop\Gusto\Gusto_Background_Food.jpg") center center;
background-size: cover;
margin: 100px 0px;
}

此代码用于个性化设置超大屏幕类的样式,通过 url 您可以猜出我想将哪个图像添加到超大屏幕背景以及它的存储位置。(Gusto 是我在桌面上创建的文件夹)但是我没有显示图像也尝试了不同图像的在线 url,但这似乎也不起作用。

最佳答案

您是否尝试过更改类名,但我认为这不是因为类名。这是因为您的图片网址而发生的。由于 Gusto 是您的元素文件夹,因此将 url 更改为“Gusto_Background_Food.jpg”即可。

index.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<title>Gusto Food</title>
</head>
<body>
<div class="jumbotron background">
<h1>Gusto Food!</h1>
<p>There must be something good that we are looking for.</p>
<p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a></p>
</div>
</body>
</html>

样式.css

.background{
height:500px;
display:flex;
align-items:center;
background:url("Gusto_Background_Food.jpg") center center;
background-size:cover;
margin:100px 0px;
}

文件夹结构:

Gusto            
- index.html
- style.css
- Gusto_Background_Food.jpg

我想这会对你有所帮助。如果这对您不起作用,请随时发表评论。

关于css - Bootstrap :jumbotron background image not working?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36827374/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com