How to prevent the floating layout wrapping when firefox zoom is reduced

前端 未结 9 938
忘掉有多难
忘掉有多难 2020-12-28 18:58

Given the following HTML. It display two columns: #left, #right. Both are fixed width and have 1px borders. Width and borders equal the size of upp

9条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-28 19:19

    I had similar problem. Setting #right to a negative margin worked. For example:

    #right{
        margin-right:-400px;
    }
    

提交回复
热议问题