Optimize Your Links For Print Using CSS — Show The URL
When moving around from page to page in your trusty browser, you get the benefit of hovering over links and viewing the link's target URL in the status bar. When it comes to page printouts, however, this obviously isn't an option. Most website printouts simply show the link as text with an underline. What good is that?
Providing URLs for links in the print version of your page can be extremely helpful to the reader. Using a small snippet of CSS code, you can get printouts to display link URLs right next to the link text.
The CSS Code
a:link:after, a:visited:after { content:" [" attr(href) "] "; }
The pitfall of this method of displaying links URLs for print is that Internet Explorer ignores this code. If showing link URLs is critical, I'd recommend using a JavaScript alternative. If not, add this snippet to your print stylesheet to make your page print-outs more informative.
![CSS @supports]()
Feature detection via JavaScript is a client side best practice and for all the right reasons, but unfortunately that same functionality hasn't been available within CSS. What we end up doing is repeating the same properties multiple times with each browser prefix. Yuck. Another thing we...
![CSS 3D Folding Animation]()
Google Plus provides loads of inspiration for front-end developers, especially when it comes to the CSS and JavaScript wonders they create. Last year I duplicated their incredible PhotoStack effect with both MooTools and pure CSS; this time I'm going to duplicate...
![MooTools: Set Style Per Media]()
I'd bet one of the most used MooTools methods is the setStyle()
method, which allows you to set CSS style declarations for an element. One of the limitations of MooTools' setStyle()
method is that it sets the specific style for all medias.
![MooTools Star Ratings with MooStarRating]()
I've said it over and over but I'll say it again: JavaScript's main role in web applications is to enhance otherwise boring, static functionality provided by the browser. One perfect example of this is the Javascript/AJAX-powered star rating systems that have become popular over the...
I´ve been reading your blog and CSS zone for a couple of weeks and I have to say that you work is pretty amazing.
Due to my work I don’t have enough time to mantain my website, but the day that I come back to design my site or blog, I’ll check your tricks, these are really good.
Keep working that way, you’re a VERY helpful resource for people like me. ;)
Cheers
Great one.
Great tips !
Thanks a lot :D
Good trick for printing a web page. But as usual, this simple tricks are not working with internet explorer
Реализация битых, аварийных и подержанных автомобилей. Продать автомобиль – срочный выкуп подержанных автомобилей. Можно после ДТП.
магазин автозапчастей мерседес
http://gava.ru
Выбираем отделочные материалы линолеум продам линолеум калуга ковролин brintons Оставьте вашу заявку и вам ответят! мытищи линолеум ковролин синтерос
Ковровые покрытия для гостиниц ковролин выстовочный коллекции линолеума линолеум terrana top
http://kovroliny.ru
I figured out how to get around this not working in IE6 and IE7 by using jQuery and a couple of proprietary IE events to show the link when printing. Any interest in porting it to mootools?
http://beckelman.net/post/2009/02/16/Use-jQuery-to-Show-a-Linke28099s-Address-After-its-Text-When-Printing-In-IE6-and-IE7.aspx
The stuff on this web site is really witty and cool wise
I happened upon this site while following the links from another site. Your site is wonderful and i bookmarked it. Thank your for the hard work you must have put in to create this wonderful facility. Keep up the excellent work
I love everything about this site!!
This is exactly what I was looking for. Thanks!
Is there something I can do as an end-user to print the links when printing a webpage? The CSS method (as well as jQuery method posted by Bill in a comment) seems to be intended for the author of the web page. How do I do this as an end-user given that the author has not done this? I could not find any Firefox add-on that does this.
Is there something I can do as an end-user to print the links when printing a web-page? The CSS method (as well as jQuery method posted by Bill in a comment) seems to be intended for the author of the web page. How do I do this as an end-user given that the author has not done this? I could not find any Firefox add-on that does this.
Hi all I want to know …How can we avoid printing url and dates and page no from print window
Thanks for this simple trick. Works great.
This tool allows inserting the CSS into any web page when the page author did not.
http://readable.tastefulwords.com/
Checkout the option “More CSS” and use the specified CSS:
a:link:after, a:visited:after { content:” [” attr(href) “] “; }
This custom CSS works still better:
why not simply:
a:after { content:" [" attr(href) "] "; }
Because it would show empty parens for anchors, try with the current page ;)
Then why not test if the link starts with http or a direct link without the starting protocol.
This wil stop displaying all te other link types and the empty ones. If you don’t want to display links to mailto, ftp, javascript etc.
don’t forget the qoutation marks :)
Thank you!
Thanks for this article. It’s exactly what I needed to figure out how to suppress this on our site. Now at least I know what to look for in debugging the URLs being printed.
Thats very good I hide it because my customers need print invoice without links:
What if I’m using relative links (including ones that go back multiple directories) as well as direct links (to other websites)? I’m trying to display urls when you print from my website, aquariumkids.com. Thanks!