将Bootstrap轮播点指示符更改为正方形

时间:2014-05-21 20:32:50

标签: css twitter-bootstrap-3

我需要将Bootstrap 3轮播上的小点指示符更改为正方形。任何想法都表示赞赏。

2 个答案:

答案 0 :(得分:8)

border-radius

上将0设置为.carousel-indicators li

答案 1 :(得分:1)

我会在这里改变这些指标的形状:

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}