In CSS, stripes can be created using a combination of properties including background-color, background-image, background-size, background-position, and background-repeat.
Here’s an example of creating horizontal stripes using CSS:
css
<style type="text/css">
.stripe {
height: 200px;
width: 200px;
background-image: linear-gradient(180deg, #000 25%, transparent 25%, transparent 50%, #000 50%, #000 75%, transparent 75%, #fff);
background-size: 50px 50px;
}
</style>
<div class="stripe"></div>
Result
Background-repeat property is set to repeat-y to repeat the background image vertically.
You can adjust these properties to create stripes of different colors, sizes, and orientations.