In what year did mobile browser access surpass desktop browser access?
2019
What is the most-often used mobile web browser in North America?
Safari
What are the three main techniques for implementing mobile websites?
A(n) ____ website changes the display of elements at specific browser widths, whereas a(n) ____ will smoothly adjust the width of the container to fit the browser width
adaptive, responsive
A screen ____ is software that simulates how mobile device screens operate.
emulator
The ____ ratio is the ratio between device pixels and logical pixels
device pixel ratio (DPR)
A DPR of 2 means ____ logical pixel is ____ device pixels wide and ____ device pixels tall
1, 2, 2
A logical pixel is also called a ____ pixel
device-independent
Is the CSS “px” unit a logical or a device pixel?
A logical pixel
In what three ways does Chrome’s DevTools allow you to emulate network conditions?
A browser’s ____ is the visible area of a webpage, not including the address bar, bookmark bar, tabs, etc
viewport
The ____ specifies viewport properties that affect what the browser’s viewport displays
viewport meta element
What are three common properties in the viewport \<meta> element ?
width - The viewport width, which is typically set to device-width, the device’s screen widthinitial-scale - The initial zoom level, which is typically set to 1 so the webpage is initially zoomed in at 100%user-scalable - A boolean value that, when set to no, prevents the user from zooming in and outThe viewport properties are specified in the viewport meta element’s ____ attribute, separated by commas
content
<meta name="viewport" content="width=device-width, initial-scale=1">
A ____ is a percentage of the browser viewport’s width or height
viewport unit
What does 1vw and 1vh refer to, respectively?
1vw is 1% of the viewport’s width, and 1vh is 1% of the viewport’s height
What does vmin and vmax refer to, respectively?
1vmin is 1vw or 1vh, whichever is smaller
1vmax is 1vw or 1vh, whichever is larger
What are the two general strategies web developers follow to design websites for desktop, tablet, and mobile?
A CSS ____ is a combination of ____ and optionally one or more ____ that evaluate to true or false
media query, media type, media feature expressions
A(n) ____ is a device category that a media query applies to
media type
What are three different media types?
all - all devices (default value if no media type is listed)print - For printers and documents viewed on screen in print preview modescreen - Intended for screensIn the context of responsive web design, a(n) ____ is a characteristic of a browser, device, or environment.
media feature
What are the main different media features?
aspect ratio - Viewport’s width-to-height ratioheight - Viewpoart’s heightwidth - Viewport’s widthorientation - Viewport’s orientationresolution - Device’s pixel densityWhat does the media feature min-width:200px mean?
It means that the width is >= 200px. The min- and ‘max-` prefixes are used for >= and <=, respectively.