我正在阅读这篇文章http://www.sitepoint.com/using-unprefixed-css3-gradients-in-modern-browsers/。我创建了这篇文章所教内容的这个小演示。
<html>
<head>
<title>Css Gradients</title>
<style>
.demo{
height: 200px;
width: 400px;
margin-bottom: 10px;
background: linear-gradient(to right,red,yellow);
/*background: linear-gradient(23deg,red,yellow);*/
}
#radial{
/*background: radial-gradient(at center,red,yellow);*/
background: radial-gradient(circle closest-corner,red,yellow);
}
</style>
</head>
<body>
<div class="demo"></div>
<div class="demo" id="radial"></div>
</body>
</html>
现在的问题是,Firefox 正在正确渲染背景渐变,但 Google Chrome(版本 22)根本没有渲染背景渐变。查看截图