开发者

Why is content disapearing in IE 7,6?

开发者 https://www.devze.com 2023-04-10 20:01 出处:网络
There is a link to the page, that has this problem: http://www.klds.cz/aktuality This is how it looks in every modern browser:

There is a link to the page, that has this problem: http://www.klds.cz/aktuality

This is how it looks in every modern browser:

Why is content disapearing in IE 7,6?

And here is how it looks in IE开发者_JAVA百科7 and lower:

Why is content disapearing in IE 7,6?

Enyone knows what's going on? Thanks.


Your clears need to be changed. I've had a LOT more cross browser success by using overflow: auto; than any clears. Try the below, it worked in my test.

Remove .clearer by commenting it out.

.clearer {
    /*CLEAR: both*/
}

Add a new entry to main.css to allow it to overflow properly

.news_main  .item {
    overflow: auto;
}

I tested a copy of your site with the changes on IE7 and that resolved it.

0

精彩评论

暂无评论...
验证码 换一张
取 消