문제

I have a css problem. I would like the white border between the "end" of the screen away it really is against it.

Jsfiddle: http://goo.gl/KL5iYJ

도움이 되었습니까?

해결책

You can remove the top border by setting the body's padding and margin to 0, like such:

body {
    padding:0px;
    margin:0px;
}

This will eliminate the whitespace above and to the sides of your menu.

다른 팁

I don't fully understand what you're asking, but I'm guessing this simple block solves what you are attempting to reach

body {
    margin: 0;
    padding: 0;
}

Put in your css:

html, body {
    margin:0;
    padding:0;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top