如何从Bootstrap中删除css background-color?

时间:2017-02-07 13:18:37

标签: jquery css twitter-bootstrap

Bootstrap在表格上应用背景颜色:透明

table {
   max-width: 100%;
   background-color: transparent;
}

我想在一个页面上删除此规则。我无法在桌面上添加样式标记,因为我无法访问它。我在考虑使用Jquery:

$('table').css('background-color', '') 

但它没有用。

1 个答案:

答案 0 :(得分:3)

在同一页面上使用此CSS。

<style> table{background-color: #FDE5DD !important;} </style>

或者你可以使用JQuery

来做到这一点
 <script> 

      $(document).ready(function(){    
      $('table').css('background-color', 'red');    
       )};

</script>