a156845044 / ie7-js

Automatically exported from code.google.com/p/ie7-js
0 stars 0 forks source link

Anchors displays the href address as well! #314

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. In html: <a href="http://www.domain.com">Link</a>
2. In browser: Link (http://www.domain.com)
3. Both "link" and (http://www.domain.com) are shown next to each other.

What is the expected output? What do you see instead?

- I would expect to see only "Link" in browser view.

What version of the product are you using? On what operating system?

- Win7, tested on IE6/IE7. Works fine on IE8.
- I'm using IE9 JS.

Original issue reported on code.google.com by des...@imagdyproduction.com on 25 Mar 2011 at 10:23

GoogleCodeExporter commented 8 years ago
The solution on this page fixed this problem for me
http://groups.google.com/group/ie7-js/browse_thread/thread/90adea30f122c93

comment out or remove the style - @page { margin: 0.5cm; } 

Original comment by churchof...@gmail.com on 5 Apr 2011 at 10:34

GoogleCodeExporter commented 8 years ago
Thanks a lot, problem solved :)

Original comment by des...@imagdyproduction.com on 6 Apr 2011 at 9:40

GoogleCodeExporter commented 8 years ago
This affects me too (also using HTML5 Boilerplate).

An alternative workaround that doesn't involve commenting the rule out is to 
simply move it to its own block:

@media print {
  @page { margin: 0.5cm; }
}

This seems to avoid triggering the bug.

Original comment by p...@byteorbit.com on 6 Oct 2011 at 8:22