我使用Twitter Bootstrap的CSS,並由於某些原因它覆蓋了我的一些類。Bootstrap CSS覆蓋我的自定義CSS
首先我我的自定義CSS之前加載它(我用玉和手寫筆的模板引擎): HTML頭:
doctype html
html
head
title= title
link(rel='stylesheet', href='/css/vendor/bootstrap.min.css')
link(rel='stylesheet', href='/css/style.css')
在我的HTML體:
table.table.table-striped
thead
th some items
th some items
th some items
tbody
tr
td.table__td
a.table__link(href='/') some items
tr
td.table__td
a.table__link(href='/') some items
tr
td.table__td
a.table__link(href='/') some items
CSS:
.table__td
padding 0
但是我得到了我的桌子上的原始8px填充td:
這是怎麼發生的?
非常感謝
谷歌的CSS選擇器的特異性' – 2014-10-01 13:32:55
你缺少括號? – Dorvalla 2014-10-01 13:33:19
這裏有一個很好的解釋:[關於css特異性的細節](http:// css-tricks。com/specifics-on-css-specificity /) – 2014-10-01 13:34:44