您的位置:首页 > Web前端 > BootStrap

关于bootstrap中轮播的一些问题

2014-11-05 22:15 309 查看
1.如果出现了下面图片的情况:


我们需要在<img>中加入样式,如下所示:

style="width:100%;"

2.如果出现了下图所示的情况:


我们需要将如下所示的代码:

<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a style="right:15px;" class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>


在其第一个<a>中加入样式
left: 15 px;
在第二个<a>中加入样式
right: 15 px;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: