Zurb基础表条纹造型

Yad*_*ada 9 css zurb-foundation

我不想在Zurb Foundation css框架中交替行的默认条带样式.

删除它的最简单方法是什么?

http://foundation.zurb.com/docs/components/tables.html

Irv*_*nin 16

您可以使用以下方法覆盖基础表交替使用CSS规则:

table tr:nth-of-type(even) {
    background-color: transparent !important;
}
Run Code Online (Sandbox Code Playgroud)