0

我有个问题

 #column-left {
     float: left;
     width: 350px;
 }

会向左浮动,但是当我缩小宽度时

有了这个: #column-left { float: left; width: 250px; }

它不起作用。这两种形式都可以在 chrome 中使用,但不能在 Firefox 中使用。有任何想法吗?

这里有一些图片来说明:http: //imgur.com/a/v0uIZ

4

1 回答 1

2

如下更新您的 CSS 代码。

从中删除float: left;和。width: 350px;#column-left

添加position: absolute;#column-left

改变margin-left: 220px;_#content

这会变魔术。在 Firefox 和 Google Chrome 上测试。

于 2012-05-13T14:55:29.133 回答