How can media queries help in creating a responsive navigation menu?
A). <div>By using fixed widths for menu items.
B). <div>By hiding the navigation menu on smaller screens.
C). <div>By applying different styles to the menu based on viewport size.
D). <div>By using animations for menu transitions.
How can media queries help in optimizing images for different devices?
A). <div>By reducing image quality on high-resolution screens.
B). <div>By automatically resizing images based on screen resolution.
C). <div>By applying different image formats for different devices.
D). <div>By specifying different image sizes for different viewport sizes.
Which media feature is commonly used in media queries to target smaller screens, such as smartphones?
A). <div>min-width
B). <div>max-width
C). <div>aspect-ratio
D). <div>orientation
How can media queries be used to create a mobile-first responsive design approach?
A). <div>By targeting desktop screens first.
B). <div>By targeting mobile screens first.
C). <div>By targeting tablets first.
D). <div>By targeting large screens first.
How does the min-resolution media feature benefit high-resolution displays in media queries?
A). <div>It targets devices with reduced screen resolution.
B). <div>It targets devices with specific pixel densities.
C). <div>It targets devices with limited color capabilities.
D). <div>It targets devices with slower processing speeds.
Which CSS technique is commonly used for creating responsive grids?
A). <div>Flexbox
B). <div>Floats
C). <div>Positioning
D). <div>Transforms
How does using em or rem units benefit responsive typography in CSS?
A). <div>They ensure text remains the same size on all devices.
B). <div>They allow text to scale based on the parent element's font size.
C). <div>They restrict text size to a specific pixel value.
D). <div>They apply a fixed font size to all text elements.
How do media queries with orientation: landscape and orientation: portrait help in responsive design?
A). <div>They target devices based on color schemes.
B). <div>They target devices based on screen aspect ratio.
C). <div>They target devices based on screen resolution.
D). <div>They target devices based on screen orientation.
How does a media query for max-width: 768px affect styles in CSS?
A). <div>It applies styles when the screen width is greater than 768px.
B). <div>It applies styles when the screen width is less than or equal to 768px.
C). <div>It applies styles when the screen height is greater than 768px.
D). <div>It applies styles when the screen height is less than or equal to 768px.
What does a fluid grid layout achieve in responsive design?
A). <div>It uses fixed widths for all elements.
B). <div>It ensures elements maintain their relative proportions when the viewport size changes.
C). <div>It restricts the layout to a specific viewport size.
D). <div>It adds unnecessary padding and margins.