如何覆盖引导风格 [英] How to override bootstrap style

查看:126
本文介绍了如何覆盖引导风格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了旋转木马,我需要重写样式指标按钮。我有风格:

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

.carousel-indicators {
    position: absolute; 
    bottom: 10px;
    left: 50%; 
    z-index: 1;
    width: 60%; 
    padding-left: 0;
    margin-left: -30%; 
    text-align: center; 
    list-style: none;
    display: inline-block;
}

且需要取得:

.carousel-indicators {
    z-index: 1;
    padding-left: 0;
    list-style: none;
    display: inline-block;
}

如何覆盖样式或删除默认值?

How do I override styles or remove the default?

推荐答案

您的意思是样式为其默认css?

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不需要修改静态位置对那些

这篇关于如何覆盖引导风格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆