Gradient that starts at 60% of the gradient line

by Yashwanth M

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient -->

CSS

body {
  width: 100vw;
  height: 100vh;
}body {
  background: linear-gradient(255deg, orange, orange, cyan);
}