运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #grad1 { height: 150px; width: 200px; background-image: radial-gradient(red, yellow, green); } #grad2 { height: 150px; width: 200px; background-image: radial-gradient(circle, red, yellow, green); } </style> </head> <body> <h3>Radial Gradient - Shapes</h3> <p><strong>Ellipse (this is default):</strong></p> <div id="grad1"></div> <p><strong>Circle:</strong></p> <div id="grad2"></div> </body> </html>