这是我的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;
}
答案 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*/
}