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.
I spent a few months experimenting with different approaches for writing simple, elegant and maintainable media queries with Sass. Each solution had something that I really liked, but I couldn't find one that covered everything I needed to do, so I ventured into creating my...
Client-side APIs on mobile and desktop devices are quickly providing the same APIs. Of course our mobile devices got access to some of these APIs first, but those APIs are slowly making their way to the desktop. One of those APIs is the getUserMedia API...
A while back David Walsh published a list of
7 MooTools Plugins You Should Use on Every Website
which included 'AutoGrow' a text area expander plugin. 'AutoGrow' is very similar in results to the class I wrote for Education.com, Flext. I decided to release this...
I often incorporate tools into my customers' websites that allow them to have some control over the content on their website. When doing so, I offer some tips to my clients to help them keep their website in good shape. One of the tips...
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!