| <html> | |
| <head> | |
| <title>CSS3 media query test: Media query testing value of grid (screen and grid:0). Using style attribute, @media css rule.</title> | |
| <link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/" /> | |
| <style type="text/css"> | |
| @media screen and (grid: 0) { | |
| p { color: green } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <p> This text should be green if viewing device is bitmap device</p> | |
| </body> | |
| </html> | |