Skip to content

Home

Stripes background pattern

Creates a stripes background pattern.

💬 Note

The fixed height and width of the element is for demonstration purposes only.

<div class="stripes"></div>
.stripes {
  width: 240px;
  height: 240px;
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 50%, #000 50%);
  background-size: 60px 60px;
  background-repeat: repeat;
}

More like this

Start typing a keyphrase to see matching snippets.