0
Someone help me make a dotted or striped background in css?
0
Someone help me make a dotted or striped background in css?
1
Follow the code to create the stripes. The first two colors is for the first stripe, and the last two colors for the second.
div {
background: repeating-linear-gradient(
90deg,
#000,
#000 10px,
#FFE13A 10px,
#FFE13A 20px
);
width: 900px;
height: 900px;
}
<div> </div>
Browser other questions tagged html css bootstrap
You are not signed in. Login or sign up in order to post.
You want CSS only or you can use svg or png?
– hugocsl