首页htmlbackground_imageCSS Property Value - 如何background-image: linear-gradient(to bottom );

CSS Property Value - 如何background-image: linear-gradient(to bottom );

我们想知道如何background-image: linear-gradient(to bottom );

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
html, body {
  width: 100%;
  height: 100%;
}

body {
  background-image: linear-gradient(to bottom, #FFFFFF 0px, #FFFFFF 55px, #C4C7C9 55px,#FFFFFF 100%);
  background-position: 0px 0px;
  background-repeat: no-repeat;
}
</style>
</head>
<body>
</body>
</html>