Tags:

CSS - While printing website page hide all anchor href link

By yash → Thursday, April 7, 2016
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 
 @media print { 
   a[href]:after {
    content: none !important;
  }
 }

Post Tags:

Yashwant Patel

No Comment to " CSS - While printing website page hide all anchor href link "