gpt4 book ai didi

javascript - 如何使轮播占据整个页面宽度

转载 作者:行者123 更新时间:2023-11-28 06:37:34 25 4
gpt4 key购买 nike

我从以下链接下载了轮播代码:查看源代码:http://ironsummitmedia.github.io/startbootstrap-full-slider/ .

我设法让它在纯 html 页面中工作。但是,当我将代码复制/粘贴到我网站的页面时,两边都有空隙,即轮播没有占据页面的整个宽度。

我已经尝试在我的 CSS 中添加 height: 100%, width 100% 但它不起作用。

我下面的代码在其自己的页面中运行良好,但一旦添加到页面的其他元素(即导航和文本)中,就会出现间距问题。

<!-- Full Page Image Background Carousel Header -->
<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"><img src="images/index1.jpg" img class="img-responsive center-block" width = "100%"></div>
<div class="carousel-caption">
<h2>#bebrown</h2>
</div>
</div>
<div class="item">
<!-- Set the second background image using inline CSS below. -->
<div class="fill"><img src="images/index1.jpg" img class="img-responsive center-block" width = "100%"></div>
<div class="carousel-caption">
<h2>Caption 2</h2>
</div>
</div>
<div class="item">
<!-- Set the third background image using inline CSS below. -->
<div class="fill"><img src="images/index1.jpg" img class="img-responsive center-block" width = "100%"></div>
<div class="carousel-caption">
<h2>Caption 3</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>
<!-- /.container -->

最佳答案

确保您的文档中包含以下内容并且文档类型为 HTML5

  *{
box-sizing: border-box;
/*add the other browsers here too*/
}

html, body{
padding: 0;
margin: 0;
}

然后是 width:100% 等明显的图像

参见 DEMO

关于javascript - 如何使轮播占据整个页面宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34540592/

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