首页
CSS
CSS 颜色关键字
Tryit:使用 currentcolor 关键字
运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> body { color: green; } div { box-shadow: 0px 0px 15px currentcolor; border: 5px solid currentcolor; padding: 15px; } </style> </head> <body> <h2>The currentcolor Keyword</h2> <p>This is some text in the body part...</p> <div> <p>This div's border color and shadow color is set to the current color value of the body element.</p> </div> </body> </html>