码迷,mamicode.com
首页 > Web开发 > 详细

网格 | @media.grid (Media Queries) - CSS 中文开发手册 - Break易站

时间:2020-07-01 23:47:17      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:media   ati   support   view   ecif   hat   table   bitmap   特征   

  • ??CSS 中文开发手册

    网格 | @media.grid (Media Queries) - CSS 中文开发手册

    @media.grid

    该grid CSS @media媒体功能可用于应用基于输出设备是否使用基于位图的基于网格或屏幕的风格。

    语法

    该grid特征被指定为表示输出设备是否基于网格的<mq-boolean>值(0或1)。

    例子

    HTML

    <p class="unknown">I don‘t know if you‘re using a grid device. :-(</p>
    <p class="bitmap">You are using a bitmap device.</p>
    <p class="grid">You are using a grid device! Neato!</p>

    CSS

    :not(.unknown) {
    ? color: lightgray;
    }
    
    @media (grid: 0) {
      .unknown {
    ?   color: lightgray;
    ? }
    
    ? .bitmap {
    ?   color: red;
      }
    }
    
    @media (grid: 1) {
    ? .unknown {
    ?   color: lightgray;
    ? }
    
    ? .grid {
    ?   color: red;
    ? }
    }

    结果

    规范

    Specification

    Status

    Comment

    Media Queries Level 4The definition of ‘grid‘ in that specification.

    Working Draft

    No change.

    Media QueriesThe definition of ‘grid‘ in that specification.

    Recommendation

    Initial definition.

    浏览器兼容性

    Feature

    Chrome

    Firefox (Gecko)

    Internet Explorer

    Opera

    Safari

    Basic support

    (Yes)

    (Yes)

    ?

    (Yes)

    (Yes)

    Feature

    Android

    Firefox Mobile (Gecko)

    IE Mobile

    Opera Mobile

    Safari Mobile

    Basic support

    ?

    ?

    ?

    ?

    ?

  • ??CSS 中文开发手册
    转载请保留页面地址:https://www.breakyizhan.com/css/32175.html

    网格 | @media.grid (Media Queries) - CSS 中文开发手册 - Break易站

    标签:media   ati   support   view   ecif   hat   table   bitmap   特征   

    原文地址:https://www.cnblogs.com/breakyizhan/p/13222315.html

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    登录后才能评论!
    © 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
    迷上了代码!