0

这是我的 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;
}
4

1 回答 1

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*/
}
于 2013-04-04T17:17:54.173 回答