12 @media all and (device-width:
700px)
14 #test { width:
300px; }
16 @media all and (max-device-width:
699px)
18 #test { width:
200px; }
20 @media all and (min-device-width:
701px)
22 #test { width:
400px; }
24 @media all and (device-height:
500px)
26 #test { height:
300px; }
28 @media all and (max-device-height:
499px)
30 #test { height:
200px; }
32 @media all and (min-device-height:
501px)
34 #test { height:
400px; }
40 @media all and (pointer: coarse)
42 #pointer { height:
20px; }
44 @media all and (hover: on-demand)
46 #pointer { width:
20px; }
53 var div
= document
.querySelector("#" + id
);
54 return div
.offsetWidth
+ "x" + div
.offsetHeight
;
60 <div id=
"pointer"></div>