1

カルーセルの前/次ボタンのサイズを変更する方法はありますか? 高さと幅に基づいてサイズを変更しようとしましたが、サイズは変更されますが、スケーリングされません。btn のような carousel-control-small タイプのクラスはありますか (small-btn など...)

これが私が試したことです:

<a class="carousel-control right" href="#mainCarousel" data-slide="next" style=" height: 30px; width:30px">&rsaquo;</a>
4

4 に答える 4

2
if you are making use of the default boostrap carousel the next and previous icon
 is located in this span below
<span class="carousel-control-next-icon fontIcon" aria-hidden="true"></span>


<span class="carousel-control-next-icon fontIcon" aria-hidden="true"></span>
create a css class like this
.fontIcon{
height: 50px;
width: 50px;
background-color:black;
border-radius: 15px;

}

于 2018-09-08T06:46:50.313 に答える