<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 1000px;
height: 200px;
margin: 100px auto;
border: 1px solid #000;
background: linear-gradient(left, red, blue);
background: -webkit-linear-gradient(left, red, blue);
background: -moz-linear-gradient(left, red, blue);
background: -ms-linear-gradient(left, red, blue);
background: -o-linear-gradient(left, red, blue);
}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>