I have a link on my webpage to print the webpage. However, the link is also visible in the printout itself.
Is there javascript or HTML code which would hide the lin
Bootstrap 3 has its own class for this called:
hidden-print
It is defined like this:
@media print { .hidden-print { display: none !important; } }
You do not have to define it on your own.
In Bootstrap 4 this has changed to:
.d-print-none