修改Bootstrap表类

时间:2016-07-26 15:20:20

标签: twitter-bootstrap

我喜欢

附带的间距
<table class="table">

使用Bootstrap时。但我想取消规则。我该怎么做?

以下是文件头部分:

<link rel="stylesheet"     href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<style> 
table {
  border-radius: 0px;
  width: 50%;
  margin: 0px auto;
  float: none;
  border: 0px !important;
} 
.table {
    border: 0px !important;
}
</style>

1 个答案:

答案 0 :(得分:0)

如果您有源版本(使用SASS或LESS),请从那里删除它。如果不这样做,则需要使用类似

的内容覆盖CSS中的属性
.table {
    border: 0;
    margin: 0;
}

如果你拥有,那么最后使用!important(分号前),但只使用它作为最后的手段(即,如果Bootstrap正在使用{ {1}}标记,您需要覆盖它)

如果您需要一只手,请在此处发表评论,我会帮助您。