Answers for "background color gradient transparent rotate"

CSS
-1

css background linear gradient transparent

body{
  height: 200px;
  background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
}
Posted by: Guest on May-25-2021
0

rotate gradient css

#test {
  color: #d3d3d3;
  background-color: #003366;
  background-image:linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0px, rgba(255, 255, 255, 0) 100%);
  height: 200px;
  width: 500px;
}
Posted by: Guest on June-08-2021

Code answers related to "background color gradient transparent rotate"

Browse Popular Code Answers by Language