主页
CSS
CSS 渐变
圆锥渐变
试用:为每种颜色定义角度
运行 ❯
获取您的
自己
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #grad1 { height: 200px; width: 200px; background-color: red; /* For browsers that do not support gradients */ background-image: conic-gradient(red 45deg, yellow 90deg, green 210deg); } </style> </head> <body> <h1>Conic Gradient - Defined degree for each color</h1> <div id="grad1"></div> </body> </html>