如何在css中删除thead的默认样式?

时间:2014-04-16 09:34:03

标签: jquery css

我正在实施表格分类器。因此,在thead代码之前添加了tr。 默认我的表有一些默认样式。如果我在tr标题颜色发生变化之前放置thead。 请告诉我如何删除默认的thead样式?

2 个答案:

答案 0 :(得分:2)

thead, thead tr, thead tr td, thead tr th
{
    background-color: none !important;
    /* you can define a custom color as well */
    background-color: #aabbcc;
    font-weight: bold;
}

对于IE7,在head部分

中键入以下代码
<!--[if lte IE 7]>
    <link href="IEold.css" rel="stylesheet" type="text/css" />
<![endif]-->

并将适当的css规则放入IEold.css文件中。也许解决方案可能是写作

/*IEold.css*/
background-color: transparent;

答案 1 :(得分:0)

尝试从css规则中删除thead,并添加如下新规则:

 thead
    {

        /* you can define your new color for the thead */
        background-color: #aabbcc;
        font-size:1.3em;
    }

thead tr, thead tr td
    {
        background: none !important;
        /* you can define a custom color as well */
        background-color: #aabbcc;
        font-weight: bold;
    }