使用CSS设置文档根元素的样式
要设置文档根元素的样式,请使用CSS:根选择器。
示例
您可以尝试运行以下代码来实现:rootSelector
<!DOCTYPE html> <html> <head> <style> :root { background: blue; color: white; } </style> </head> <body> <h1>Heading</h1> <p>This is demo text.</p> </body> </html>
要设置文档根元素的样式,请使用CSS:根选择器。
您可以尝试运行以下代码来实现:rootSelector
<!DOCTYPE html> <html> <head> <style> :root { background: blue; color: white; } </style> </head> <body> <h1>Heading</h1> <p>This is demo text.</p> </body> </html>