这些 div 之间的 space 是什么
What is with the space in between these divs
我的website. How can I get them to get back together using CSS? The source code is here底部的两个div之间有一个space。
这是 <h1>
的保证金
Newsletter Sign Up
h1
未在 CSS 中定义。因此,它默认为浏览器默认值。
截至目前 <h1>
的 top/bottom margin 为 32.160px
尝试将以下内容添加到您的 CSS
h1 {margin: 0 auto}
我的website. How can I get them to get back together using CSS? The source code is here底部的两个div之间有一个space。
这是 <h1>
Newsletter Sign Up
h1
未在 CSS 中定义。因此,它默认为浏览器默认值。
截至目前 <h1>
的 top/bottom margin 为 32.160px
尝试将以下内容添加到您的 CSS
h1 {margin: 0 auto}