How to remove href value while printing webpage

This is usually caused due to Bootstrap.  Bootstrap CSS file has:

@media print {
a[href]:after {
content: " (" attr(href) ")";
}
}

Just remove it from there, or override it in your own print stylesheet:

@media print {
a[href]:after {
content: none !important;
}
}

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.