gpt4 book ai didi

css - 全 slider Bootstrap 中的图像背景

转载 作者:太空宇宙 更新时间:2023-11-03 22:47:19 26 4
gpt4 key购买 nike

我正在使用 Full Slider bootstrap here当我用文件夹中的图像替换图像 url 时,它不起作用。

image:url('http://placehold.it/1900x1080&... One') 

<img class="fill" src="background:url(./img/header.jpg)"></img>

在 Bootstrap 页面上,有些人遇到了同样的问题,即使我尝试了不同的解决方案 ../img 或/img,它也不起作用。

有人有想法吗?

谢谢

这里是Bootstrap的源码,我改了

                <div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide One');"></div> 

通过

<div class="fill" src="img/header.jpg"></div>  

    <header id="myCarousel" class="carousel slide">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>

<!-- Wrapper for Slides -->
<div class="carousel-inner">
<div class="item active">
<!-- Set the first background image using inline CSS below. -->
<div class="fill" style=""></div>
<div class="fill" src="img/header.jpg"></div>
<div class="carousel-caption">
<h2>Caption 1</h2>
</div>
</div>

</div>

<!-- Controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="icon-prev"></span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="icon-next"></span>
</a>

</header>

最佳答案

让它在本地工作:

<div class="fill" style="background-image: url('img/picture.jpg')"></div>

在包装 DIV 内部

<!-- Wrapper for Slides -->
<div class="carousel-inner">
<div class="item active">
<!-- Set the first background image using inline CSS below. -->
<div class="fill" style="background-image: url('img/picture.jpg')"></div>
<div class="carousel-caption">
<h2>Caption 1</h2>
</div>
</div>

关于css - 全 slider Bootstrap 中的图像背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41508974/

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