Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
05
Remove href Values when Printing in Browser
posted on October 05, 2017 06:15
<style type="text/css">
@media print {
a[href]:after {
content: none !important;
}
}
</style>
Posted in:
CSS
Actions:
E-mail
|
Permalink
|
Comments (0)
Related Articles
Add Stylesheet from Code Behind
Add a stylesheet from custom DNN module settings HtmlGenericControl css1 = new HtmlGenericControl("link"); css1.Attributes["type"]...
Remove href values when printing
@media print { a[href]:after { content: none !important; } }
Post Rating
1
2
3
4
5
Comments
There are currently no comments, be the first to post one!
Post Comment
Name (required)
Email (required)
Website
Notify me of followup comments via e-mail