tags:

views:

33

answers:

1

If i include blueprint all my link in page looks like (if it was link on google.com) google(http://google.com)+ all unerline but but if i remove blue print links looks fine without brackets ?

what it can be ??

+1  A: 

You mean blueprint css? That's because of the following lines in print.css :

a:link:after, a:visited:after {
  content: " (" attr(href) ")";
  font-size: 90%;
}

It's the content:-line that's "bugging" you. Are you including print.css for screen-media too? What does your HTML look like?

Martijn Engler
When i look tutorial i understood need include in any page 3 lines1st if ie and include ie.css2nd print.css3dr screen.css You mean that ?i think do something wrong in fundamentally?
Alexandr
You should specify the media-type, like this:<link rel="stylesheet" href="print.css" type="text/css" media="print" />
Martijn Engler
thank you all work !
Alexandr
thank you all work !Recomend great book or resource and toolkit for fast creating (html css side) web page?
Alexandr