Search Results

0
votes

IE sends inner HTML when clicking on a button element

I don't know any way of making it work in IE7 (or IE6) without the need for JavaScript (or strange multi-form constructions). Isn't that localized accessible to the back-end somehow either? …
0
votes

IE TextRange select method not working properly

Maybe I misunderstand, but if I click to the right of that first line, my cursor already immediately appears at the start of the second line, so that's not a TextRange issue, right? Adding …
2
votes

Internet explorer and floats: please explain

The floats are being bumped to the next line because of the width: 270px on the rows. That happens in IE6/7 because of its …
1
vote

How to get usage(progress) bar to display properly in IE

What are $s, $v and $g doing in your HTML; and the <br>, for that matter? If I remove the <br>, and replace those $ values by actual percentages that a …
0
votes

Why does layout change in IE when UL is alone in a TD vs having an extra empty DIV?

The gap is caused by IE's funny ways with lists. Since ul tags can only contain <li>s, IE apparently also believes the whitespace between the list items is inappropr …
2
votes

Can !important rules be used in IE’s CSS expressions?

The reason those CSS expressions don't work is because IE only evaluates the expression for the last property in the cascade. E.g. if you have an HTML document with a link inside it and the …
2
votes

Image rendered with wrong colors in IE8

It's only slightly different, right? But enough to see the difference? That's because PNG files typically store gamm …
0
votes

What CSS3 features does Internet Explorer 8 support?

I mostly rely on Wikipedia's article comparing CSS layout engines. It's a …
1
vote

Wrong float warping in IE7

Remove the zoom: 1 from the #mainContent. I know you added that to work around IE bugs in the first place, but you're going to have to find another way to do that …