Answers for "responsive gradient background css"

CSS
0

responsive gradient background css

body {
  background-color: red;
}
#grad1 {
  height: 100px;
  width: 100%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 49.9%, rgba(255, 255, 255, 1) 50.1%);
}

<div id="grad1"></div>
Posted by: Guest on August-10-2021

Code answers related to "responsive gradient background css"

Browse Popular Code Answers by Language