Answer & Solution
Answer: Option Option B
Solution:
You can hide certain elements from being printed using CSS by setting the display: none; property. This property removes the element from the document flow and prevents it from being rendered or printed. By applying display: none; to specific elements or classes within a print media query (@media print {}), you can exclude them from the printed output while still displaying them on the screen. While visibility: hidden;, opacity: 0;, or overflow: hidden; can also hide elements, display: none; is specifically used to hide elements from printing.