I got bootstrap to prevent printing href links, but the btn class I am having a hard time with. I would like to also do it with input buttons also. input[class]
.
<style>
@media print {
a[href]:after {
content: none !important;
}
a[class="btn"]:after {
display: none !important;
}
}
</style>
<p><input type="button" class="btn btn-warning btn-lg col-md-12" value="Print List" onClick="print();" /></p>