Gradient that starts at 60% of the gradient line

by batcave

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(90deg, orange 30% 60%, transparent);
}