This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: 你能举一个除了`screen`之外的`@media`属性的例子吗?
有四种类型的`@media`属性(包括`screen`):
* `all`:适用于所有媒体类型设备
* `print`:适用于打印机
* `speech`:适用于“朗读”页面的屏幕阅读器
* `screen`:适用于电脑屏幕、平板电脑、智能手机等。
以下是`print`媒体类型用法的示例:
```css
@media print {
body {
color: black;
}
```