How to override bootstrap style

前端 未结 3 1015
一生所求
一生所求 2021-01-22 04:33

I created the carousel and I need to override styles Indicators buttons. I have style:

.carousel-indicators {
    position: absolute; 
    bottom: 10px;
    left         


        
3条回答
  •  醉话见心
    2021-01-22 05:23

    You mean styles to its default css?

    .carousel-indicators {
        z-index: 1;
        padding-left: 0;
        list-style: none;
        display: inline-block;
        /*lets override other properties*/
        position: static;/*or relative*/
        width: auto;
        margin: 0;
        text-align: left;
    }
    

    top, left aren't required to modify as it is using static position won't sense for those

提交回复
热议问题