While printing page of any website many browsers print all the href links, which is sometimes not necessary or look ugly.
To avoid printing href link you just need to add following code into your css file.
CSS
To avoid printing href link you just need to add following code into your css file.
CSS
@media print { a[href]:after { content: none !important; } }
No Comment to " CSS - While printing website page hide all anchor href link "