内容浮动在Internet Explorer 9中我的Tumblr主题的侧边栏上方。我该如何解决?

时间:2013-04-04 17:10:11

标签: css internet-explorer-9 tumblr

这是我的Tumblr主题。

http://lt-chocolate.tumblr.com/

我在Internet Explorer上查看过,内容浮动在侧边栏上方。无论如何我可以解决它吗?

这是我对内容部分的CSS。

#content {
background-color: #F2EBD9;
float: right;
width: 1200px;
height: 100%;
margin-right: 25px;
position: relative;
bottom: 296px;
clear: both;
}

1 个答案:

答案 0 :(得分:0)

我在萤火虫中尝试了这个,它对我有用

#sidebar {
    float: left;
    position: relative;
    margin-top: 30px;
    width: 350px;/*change this size to your needs*/
}
#content {
    background-color: #F2EBD9;
    float: left;
    margin-right: 25px;
    position: relative;
    width: 800px;/*change this size to your needs*/
}