简体   繁体   中英

How to remove unncessary white space

I followed a tutorial for parallax scrolling with pure CSS (link: http://callmenick.com/post/simple-parallax-scrolling-effect ) and it seems to be fully working after implementation. The problem is, there is a white space between my site header/nav and the body which I don't know how to remove.

The link is here; I put my site header background color to red to make it more visible: http://cindy-li.com/

Any ideas what could be causing this? Thanks in advance!

导致问题的<h1>Serene<h1> -检查您的CSS

It's the margin set on the h1 tag containing the word "Serene" at the top of the page. You can either remove the margin from that tag, or set overflow: hidden on its parent and find another way to center the text.

set margin-top: 0; on <h1>Serene</h1>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM