demo.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.box {
width: 1000px;
height: 200px;
margin: 100px auto;
border: 1px solid #000;
/* 线性渐变色 */
background: -webkit-linear-gradient(left,red,blue); /* -webkit- 谷歌前缀,苹果(safari)前缀 */
background: -moz-linear-gradient(left,red,blue); /* -moz- 火狐前缀 */
background: -ms-linear-gradient(left,red,blue); /* -ms- 微软ie前缀 */
background: -o-linear-gradient(left,red,blue); /* -o- 欧朋前缀 */
background: linear-gradient(left,red,blue);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>