- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Set a radial gradient as the background image with CSS
Set a radial gradient as the background image, with radial-gradient() CSS function. You can try to run the following code to implement linear-gradient() function in CSS
Example
<!DOCTYPE html> <html> <head> <style> #demo { height: 200px; background: radial-gradient(green, orange, maroon); } </style> </head> <body> <p>Setting background as radial gradient.</p> <div id = "demo"></div> </body> </html>
- Related Articles
- Set a linear gradient as the background image with CSS
- Repeat a radial gradient with CSS
- Set background image as fixed with CSS
- Set the Background Image Position with CSS
- Usage of radial-gradient() CSS function
- Usage of repeating-radial-gradient() CSS function
- Set the background image of an element with CSS
- Build a radial gradient with the shape of a circle
- Set all the background image properties in one section with CSS
- Repeat the background image with CSS
- Specify the background image with CSS
- How to create a gradient background color on scroll with CSS?
- Set image as a border for elements with CSS
- Set the Background Attachment with CSS
- Create JS Radial gradient with matrix in HTML

Advertisements