css - Zurb Foundation Print Styles - How to disable urls appearing next to anchors when printing? -
when print page actual url appears next every anchor tag, looks weird in breadcrumbs or footer links. appropriate way disable behavior when using zurb foundation 5? alternatively, if there css style can use override behavior, great.
you can see description of behavior in documentation here: http://foundation.zurb.com/docs/components/typography.html#print-styles
that caused pseudo elements being added attribute selectors; this:
a[href*="/"]:after, a[href*="/"]:visited:after {content: "("attr(href)")";}
you can override resetting content of pseudo element.
try adding following print stylesheet:
a[href*="/"]:after, a[href*="/"]:visited:after {content: normal;}
Comments
Post a Comment