Change arrow colors in Bootstraps carousel

后端 未结 13 2058
[愿得一人]
[愿得一人] 2020-12-12 19:25

I\'m obviously missing something stupidly simple here. I have images with a white background so I want to be able to edit the arrows on the Bootstraps Carousel so they are v

13条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-12 20:05

    I hope this works, cheers.

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      height: 100px;
      width: 100px;
      outline: black;
      background-size: 100%, 100%;
      border-radius: 50%;
      border: 1px solid black;
      background-image: none;
    }
    
    .carousel-control-next-icon:after
    {
      content: '>';
      font-size: 55px;
      color: red;
    }
    
    .carousel-control-prev-icon:after {
      content: '<';
      font-size: 55px;
      color: red;
    }

提交回复
热议问题