views:

33

answers:

3

this happens when i set my background-position to right in IE8 Only...

you can see that in the following URL : http://www.scrapingweb.com/quote.html (Contact Us tab)

A: 

Try to specify both positions e.g.:

background-position: right top

If you only specify one keyword, the second value will be "center"

infinity
i did so i gave it right and top but the problem is in the background-position-x as it shows an extra 1px to the right.
Mr_semsim
Can you post a link to check it out?
infinity
you can see it here in this page http://www.scrapingweb.com/ please have a look on Contact Us tab in the top navigation. don't forget to use IE8
Mr_semsim
A: 

I think this is a bug in IE8

A: 

I tried to reduce the width of the HTML or the body like this

body{width:99.6%}

or

html{width:99.6%} - preferred

And worked fine

Mr_semsim