Change arrow colors in Bootstraps carousel

后端 未结 13 2057
[愿得一人]
[愿得一人] 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:24

    If you are using bootstrap.min.css for carousel-

    <a class="left carousel-control" href="#carouselExample" data-slide="prev">
      <span class="glyphicon glyphicon-chevron-left"></span>
      <span class="sr-only">Previous</span>
    </a>
    <a class="right carousel-control" href="#carouselExample" data-slide="next">
      <span class="glyphicon glyphicon-chevron-right"></span>
      <span class="sr-only">Next</span>
    </a>
    

    Open the bootstrap.min.css file and find the property "glyphicon-chevron-right" and add the property "color:red"

    0 讨论(0)
提交回复
热议问题