I've been tasked with updating a webpage that was passed down to me. One thing I'm working on is adding a print.css file, as it didn't have one before.
The original developer included a...
<hr class="hidden" />
The main css file has the following style for this class:
.hidden {
display: none; }
...at different points in the page that separate the main sections. I'm curious to know why this might be beneficial?
Although there's no separate print.css file, it's possible that the previous developer planned to create one but never got around to it. The webpage has a great design, so I trust that the original developer knew what they were doing.