Bootstrap carousel indicators are square; I want them round

前端 未结 4 1352
轮回少年
轮回少年 2021-01-04 20:15

I have just successfully set up a 3-image carousel on my site using Bootstrap. This is what it looks like:

If you notice, the indicators are square and I wa

4条回答
  •  悲哀的现实
    2021-01-04 20:56

    You can try this:

    .glyphicon-chevron-right:before, .glyphicon-chevron-left:before {
        background-color: #000;
        padding: 5px;
        border-radius: 50%;
    }
    

提交回复
热议问题