2 <style type=
"text/css">
3 /* Valid media query expression, background-color must be green. */
4 @media
(min-width: 100px) {
5 div
{ background-color: green
; }
8 /* Invalid media query expression, width media feature accepts length
9 or number value. Media query should not match and div should not be blue. */
10 @media
(min-width: blah
) {
11 div
{ background-color: blue
; }
16 <div style=
"width: 200px; height: 200px;"\
>