运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> @media screen { body { color: green; } } @media print { body { color: black; } } </style> </head> <body> <h1>The @media Rule</h1> <p>Use mediaqueries to set the text color to green when the document is displayed on the screen, and to black when it is printed.</p> </body> </html>