实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>css media 规则 实例 - 自学教程(runoops.com)</title> <style> @media screen { p.test { font-family: verdana, sans-serif; font-size: 14px; } } @media print { p.test { font-family: times, serif; font-size: 10px; } } @media screen, print { p.test { font-weight: bold; } } </style> </head> <body> <p class="test">自学教程 -- runoops.com</p> </body> </html>
运行结果: