我使用Bootstrap 4.0为Carousel使用白色背景,并希望更改控件的颜色.似乎bootstrap现在使用SVG作为他们的轮播图标.这意味着直接更改属性不起作用.
我目前正在使用Font Awesome来访问网站上的其他元素,所以如果有一种方法可以使用fa-vvrons并对其进行格式化,并且它在调整大小和格式化方面仍然表现相同,那么这可能是一个有效的解决方案.好.
这是我当前控制元素的代码:
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
Run Code Online (Sandbox Code Playgroud)
我也在GitHub上找到了这个页面,但是我也无法做出任何有用的答案.