Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .gradient { height: 250px; width: 250px; background-color: blue; background: repeating-conic-gradient(from -45deg, red 45deg, orange, yellow, green, blue 225deg); } </style> </head> <body> <div class="gradient"></div> </body> </html>