线性渐变在Firefox 11中不适用于Ubuntu规范

时间:2013-10-11 05:07:02

标签: html css html5 css3

这是我的css

    * {
    background: linear-gradient(to right, blue, white); 
    }

我的html只是必不可少的标签(没有div,没有任何东西)

<!DOCTYPE html>
<html>

<head>
<meta http-equiv="refresh" content="10"> 
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<title>Corruption in India</title>

<body>
</body>
</html>

但它只是没有出现

1 个答案:

答案 0 :(得分:3)

Firefox 11不支持新的渐变语法。用于旧版本的符号是:

background: -moz-linear-gradient(left, blue, white);

当然,您可以同时使用这两个(以及其余的前缀)。