Last Updated: February 25, 2016
·
790
· tralles

get rid of (full-url) in print-view if using bootstrap3

if you print a bootstrap3 page in chrome you'll notice, chrome adds the full-url beneath each link at the print-page - this is odd an can be easily removed by a little pice of CSS

@media print {
  a[href]:after {
    content: none !important;
  }
}