Bootstrap: How to avoid printing link URLs

Posted . Visible to the public.

By default, Twitter Bootstrap's print styles include printing links.

/* Bootstrap's way of printing URLs */
@media print {
  a[href]:after {
    content: " (" attr(href) ")";
  }
}

If you want to turn that off Show archive.org snapshot , you can do

/* Don't print link hrefs */
@media print {
  a[href]:after {
    content: none
  }
}
Last edit
Arne Hartherz
License
Source code in this card is licensed under the MIT License.
Posted to makandra dev (2014-11-14 12:51)