- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Repeat a radial gradient with CSS
Use the repeating-radial-gradient() function to repeat radial gradient.
You can try to run the following code to implement repeating-radial-gradient() function in CSS
Example
<!DOCTYPE html> <html> <head> <style> #demo { height: 300px; background: repeating-radial-gradient(green 20%, orange 40%, maroon 40%); } </style> </head> <body> <p>Repeating radial gradient</p> <div id = "demo"></div> </body> </html>
Advertisements