2

I have an odd alignment issue where an extra space is being added. Here is the code: http://jsfiddle.net/aVdGE/1/

I'm using IE9 with both my project and jsFiddle. Here is a picture of the jsFiddle result and here is the result viewed not in jsFiddle (left = jsFiddle, right = IE). The code is identical:

enter image description here

Alex Guerin
  • 2,336
  • 10
  • 36
  • 53
  • Your fiddle looks the same to me in IE9, Chrome, and FF. – j08691 Jan 21 '12 at 22:27
  • I don't have IE here, but could it be IE ads more spacing to the ul element? What does the inspector say? And what is the result if you give all elements a border? – timing Jan 21 '12 at 22:31
  • If I uncheck "Normalized CSS" in your fiddle, FF and IE show the gap but Chrome doesn't. – j08691 Jan 21 '12 at 22:32

2 Answers2

2

Add padding:0 to #slider ul

j08691
  • 204,283
  • 31
  • 260
  • 272
0

I don't have IE9 running here at the moment, but I did spot this line-height: 1.35; .... 1.35 what? No indication of measurement may be causing an unintended size.

Scott
  • 21,475
  • 8
  • 43
  • 55