Set space between divs

后端 未结 3 1013
没有蜡笔的小新
没有蜡笔的小新 2020-12-28 15:23

I have two divs like this:

3条回答
  •  [愿得一人]
    2020-12-28 15:50

    Float them both the same way and add the margin of 40px. If you have 2 elements floating opposite ways you will have much less control and the containing element will determine how far apart they are.

    #left{
        float: left;
        margin-right: 40px;
    }
    #right{
       float: left;
    }
    

提交回复
热议问题