Internet Explorer CSS issues – Image position.
CSS issues in Internet explorer.
While working with UI changes, there are a lot of things that would work fine in firebox but would go haywire in IE. In ideal conditions the requirements that are coded has to work smoothly in all the browsers.
There was one such issue, where the images were correctly positioned in Firefox but their position used to change in IE on minimizing and maximising the browser.
The code wasn’t written by me so I had to a lot of RnD on the issue. Later I realized it was a simple CSS issue.
The position of the image was set as
position: absolute;
in the CSS class.
I changed it to
position: relative;
The complete formatting changed, I had to change all the margin values. After a lot of trial and error, the issue was resolved.
Here are some more solution to CSS issues









Thanks for the education!
Good suggestion here. Thanks.
great
Nice one.