How to add space between DIVs?

后端 未结 5 943
我在风中等你
我在风中等你 2021-01-13 15:05

I have a WordPress generated page where I want to place AdSense below the header of the page. See image at http://imgur.com/WPXeG

I want to create some white space

5条回答
  •  清酒与你
    2021-01-13 15:42

    I added margin-top: 5px on the element inside the div and it work. If you could add an id to the div you use this css rule:

    div#adds > ins{
        margin-top: 5px;
    }
    

提交回复
热议问题