Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Check this jsfiddle.

I have been trying to solve this problem for a while but I cant seem to find a good solution. The problem is that the main img in the center takes up a lot of height then it is supposed to do with Opera. But there is no such problem in other browsers.

Sure floating it will solve this but it creates more problems under the image (code that I have not included).

One other solution is to not set #mainImg to display:block; but that also creates some height/width problems.

So the question is, is there a better solution for this? And why is Opera rendering it differently then the other browsers, what is causing this?

share|improve this question
Why do you need to display the img as block? What kind of problems do you get by not displaying img as block? – tw16 Aug 10 '11 at 15:22
If you take off display:block from the css you will notice that in the sidebar there will be some extra space under each image, I thought I saw that extra space under the #mainImg but now that I check again there is none. But I still wonder why opera renders it differently – halliewuud Aug 10 '11 at 15:55
See stackoverflow.com/questions/948145/… for why you get the extra space below images (and how to fix it). – mercator Aug 11 '11 at 22:27

1 Answer

up vote 0 down vote accepted

Opera somehow expands the image's parent block because of the float near it. It sure needs a better investigation, but as a quick fix you can:

The point is to clear the flow context for this block so the right float won't somehow be placed in it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.