How can you hide certain elements from being printed using CSS?
A). By setting the visibility: hidden; property.
B). By setting the display: none; property.
C). By setting the opacity: 0; property.
D). By setting the overflow: hidden; property.
How can you test print styles in a web browser during development?
A). By printing physical copies of the documents.
B). By using print preview options in the browser.
C). By disabling print functionality temporarily.
D). By using a separate browser for printing tests.
How can you apply print-specific styles to an HTML page using CSS media queries?
A). By using the @media print {} block in CSS.
B). By using the @media screen {} block in CSS.
C). By using the @media all {} block in CSS.
D). By using the @media handheld {} block in CSS.
How can you set the page margins for printing using CSS?
A). By using the margin property.
B). By using the padding property.
C). By using the border property.
D). By using the outline property.
How can you add custom headers and footers to a printed document using CSS?
A). By using the @page rule with :after and :before pseudo-elements.
B). By using the @media print rule with header and footer selectors.
C). By using the @import rule with external CSS files.
D). By using the @keyframes rule with animation properties.
How can you print a specific section of an HTML page when the user clicks a button?
A). By using the window.print() method.
B). By using the window.open() method.
C). By using the window.prompt() method.
D). By using the window.confirm() method.
Which HTML element is commonly used to create a print button in JavaScript?
A). <input type='button'>
B). <a>
C). <button>
D). <div>
How can you apply custom print styles to a specific HTML element using CSS?
A). By using the :hover pseudo-class.
B). By using the :focus pseudo-class.
C). By using the :before pseudo-element.
D). By using the :not pseudo-class.
What is the purpose of using print-specific CSS styles in web development?
A). To enhance the appearance of printed documents.
B). To apply animations to the page when printing.
C). To change the layout on mobile devices.
D). To hide elements from the screen display.
How can you ensure that certain elements are hidden when printing an HTML page?
A). By applying the display: none; property in a print media query.
B). By applying the visibility: hidden; property in a print media query.
C). By applying the opacity: 0; property in a print media query.
D). By applying the position: absolute; property in a print media query.