Bootstrap 3 Carousel按钮偏离中心

时间:2014-03-24 18:29:01

标签: twitter-bootstrap twitter-bootstrap-3 carousel

我使用Bootstrap 3旋转木马,而上一个和下一个箭头稍微偏离中心。我不确定导致问题的是什么。 bootstrap轮播上的示例页面看起来没问题。

您可以在此页面的主幻灯片中看到箭头问题,也可以在页脚上方看到:

我真的需要在我的网格范围内带回右箭头。

http://webdev.craftonhills.edu/

1 个答案:

答案 0 :(得分:2)

Glyphicon箭头应该有边距。试试这个:

.carousel-control .glyphicon-chevron-left, 
.carousel-control .glyphicon-chevron-right {
   position: absolute;
   top: 50%;
   z-index: 5;
   display: inline-block;
   margin-right: -15px;
   margin-left: -15px;
}

这应该将你的箭头置于旋转木马控制中心。