MCQ
How can you hide elements on mobile screens in responsive design?
Responsive Web Design
A Using display: none in a media query
B Using opacity: 0
C Using visibility: hidden
D Using element.remove()
Explanation

Using display: none within a media query is the standard way to hide elements on specific screen sizes, though it removes the element from the document flow.