Help please draw a check mark on the picture. I know that this can be done with linear-gradient() , it’s something like this
div { width: 270px; height: 270px; background-image: linear-gradient(230deg, #000 17px, transparent 12px), linear-gradient(310deg, #000 17px, transparent 12px); background-repeat: no-repeat; background-size: 30px 30px; } <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="style.css"> </head> <body> <div></div> </body> </html> But how to add white stripes?
