如何防止print()在bootstrap中打印URL和按钮?

时间:2016-10-07 20:21:46

标签: twitter-bootstrap

我得到了bootstrap以防止打印href链接,但btn类我很难用。我也想用输入按钮来做。 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>

0 个答案:

没有答案