[Solved] Center striped backgrounds in css [duplicate]


Yes it is. You can use repeating-conic-gradient.

div {
  height: 500px;
  background: repeating-conic-gradient(
    hsla(0,0%,100%,.2) 0deg 15deg,
    hsla(0,0%,100%,0) 0deg 30deg
  ) #ccb300;
}
<div></div>

You read more about it at W3 CSS Image Values.
This property is not compatible with all browsers. Check caniuse for more information.

solved Center striped backgrounds in css [duplicate]