覆盖CSS背景属性

时间:2013-04-18 23:50:01

标签: html css background

我有一个容器,通过为其分配一个类名来从全局css文件继承一些设置。但是,当我尝试使用另一个类来更具体地设置背景时,没有任何变化。

我的html的有趣部分:

    <html>
        <head>
            <link rel="stylesheet" type="text/css" href="/styles/global.css">
            <link rel="stylesheet" type="text/css" href="/styles/register.css">
        </head>
        <body class="class1 class2">
            <div>
                some content
            </div>
        </body>
    </html>

全球的CSS

    .class1 {
        /*Shadowing for 3D effect*/
        -moz-box-shadow:inset 0px 1px 2px 0px #caefab; /*pale green*/
        -webkit-box-shadow:inset 0px 1px 2px 0px #caefab; /*inner/outer, hz-offset, vert-offset, blur-rad, spread, color*/
        box-shadow:inset 0px 1px 2px 0px #caefab;
        /*Background gradient effect*/
        background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #46bf46), color-stop(1, #1d911d) ); /*dark green to light green*/
        background:-moz-linear-gradient( center top, #46bf46 5%, #1d911d 100% );
        filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#46bf46', endColorstr='#1d911d');
        /*Rounded corners*/
        -moz-border-radius:10px;
        -webkit-border-radius:10px;
        border-radius:10px;
        /*Border*/
        border:1px solid #46bf46;
        /*text settings*/
        color: white; /*like chalk*/
        text-decoration:none; /*this is default*/
        text-shadow:1px 1px 0px #777; /*hzoff vtoff blur color*//*gray makes letters pop out*/
        font-family:Verdana, sans-serif;
        font-size:20px;
        font-weight:bold;
    }

最后是CSS for register

    .class2 {
        color: black;
        background-color: lightgray;
    }

文字颜色完全覆盖,但我无法改变背景。

1 个答案:

答案 0 :(得分:2)

CSS上不存在text-color。这是颜色

关于背景,请尝试全部使用背景属性,而不仅仅是背景色。也许浏览器渐变覆盖了它。