# 媒体查询
# 媒体查询基本语法格式
@media [media type] [and|not|only] [(media feature)] { CSS-Code;}
1
# 支持的值
@media (shape: circle); /* 圆形屏 */
@media (shape: rect); /* 方形屏 */
1
2
3
2
3
# 支持的media type:screen
@media screen and (shape: circle);
1
# 单独使用时,默认media type 为 screen
@media (shape: circle);
@media (shape: rect);
1
2
3
2
3
←