运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { color: red; border: 1px solid blue; } h1 { color: initial; } </style> </head> <body> <div> <h1>Initial</h1> <p>The header above and this paragraph is inside a DIV element, The DIV element has the color property set to "red". The header element has its color property set to "initial", which in this case is "black".</p> </div> </body> </html>