Read more

Bootstrap: How to avoid printing link URLs

Thomas Klemm
November 14, 2014Software engineer

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

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

Rails Long Term Support

Rails LTS provides security patches for old versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2)

  • Prevents you from data breaches and liability risks
  • Upgrade at your own pace
  • Works with modern Rubies
Read more Show archive.org snapshot

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
  }
}
Posted by Thomas Klemm to makandra dev (2014-11-14 13:51)