So to avoid additional print-out of link information in a printed web page, add the following rules to the @media print
section:
a:link:after, a:visited:after {
content: "";
}
This will remove the ugly link information like Homepage (http://localhost)
and reduce it to Homepage
. You may of course add rules to avoid it only in the text section (or only in the navigation, but you shouldn’t display navigation in the print-out format of your web page.