Hyperlinks with a URL with a plan

I just converted the site to Blueprint CSS today, and suddenly all my hyperlinks show their URLs in brackets, for example.

This hyperlink

<a href="Products/List.aspx">Read more</a> 

Displayed as follows

 Read More (Products/List.aspx) 

I wonder if this could be due to one of the plugins in Blueprint?

ADDED: The link is displayed normally, that is, the unwanted part of the URL is created by the client side. People asked for the source code, so here it is (irrelevant text deleted):

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <link href="Styles/Blueprint/screen.css" rel="stylesheet" type="text/css" /> <link href="Styles/Blueprint/print.css" rel="stylesheet" type="text/css" /> <!--[if lt IE 8]><link rel="stylesheet" href="Styles/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]--> </head> <body> <a href="Products/List.aspx">Read more</a> </body> </html> 

SOLVED: By removing the sheet "print.css" that offers all the tutorials, I was able to solve the problem in this example and on my entire site. I am still very curious why the venerable "print.css" acts like this.

+6
css blueprint-css
source share
1 answer

You probably have something similar in CSS:

 a:link:after { content:" (" attr(href) ") "; } 

This will lead to a description of the behavior.

Usually you use this style only for the print version of your stylesheet.

+12
source share

All Articles