Negation of max-width query

max-widthを否定するクエリーを書くことで、Media Queries Lvel 4で定義される予定のwidth < 768pxというクエリーをエミュレートすることができる。

not all and (max-width: 768px)

If this text is green, the viewport width is wider than 768px (not including 768px).

not (max-width: 768px)

If this text is green, the viewport width is wider than 768px (not including 768px). However, this does not work.