weird display under IE6
i know the IE6 is de开发者_JAVA技巧ad,but in china, there are lots of people still using it. so expect someone can do me a favor about this problem.
this is the
http://run.xxmn.com/new/merchant.html
the 6 small pages move form left to right under the header. there are 8 pages in the box. but under IE6,there are only 7 pages. the last one is under the first one, but under IE7,Firefox,chrome. it's display ok..
Don't have IE 6 available right now, but it looks like double margin bug: http://www.positioniseverything.net/explorer/doubled-margin.html
Possible fix:
#viewscarousel-blue_img-block_1 li {
..other rules..
display:inline;
}
This would work for IE 5/6, and, AFAIR, won't produce any difference in modern browsers. But still it's better to use additional IE styles via Conditional Comments.
精彩评论