HTML/CSS body isnt at the top of the page

Dan

I am having a problem with my HTMl/CSS. it seems like my body tag has somehow got a margin-top of 10px... However I cannot find anyway to get rid of it. The other websites I have built has never done this, so any help would be appreciated.

THE CODE:

HTML

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="js_plugins/skrollr.js"></script>
        <link rel="stylesheet" type="text/css" href="theme.css">
        <link rel="stylesheet" type="text/css" href="text.css">
        <title>MyPage</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    </head>  
    <body>
        <div id="maincontent">
            <section id="maincontent-sect-intro" >
                <div id="maincontent-sect-intro-content">
                    <p class="name-intro">Introduction</p>
                </div>
            </section>
        </div>
    </body>
</html>

CSS

body
{
    width: 100%;
    margin: 0px;
}
div#maincontent
{
    min-width: 1000px;
    width: 100%;
}
section
{
    margin-top: 0px;
    height: 550px;
    width: 100%;
}
/*
For intro section
*/
section#maincontent-sect-intro
{
    background-color: #666666;
    text-align: center;
}
div#maincontent-sect-intro-content
{
    text-align: center;
}
Blake

Your problem here is the p class "name-intro" <p> tags automatically give a margin top of 1em. just add this to your css

.name-intro {
  margin: 0;
}

also a rule of thumb, when specifying 0 values, never add pixel or em, just leave it as zero :)

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

How can I remove space between body and top of page

분류에서Dev

jQuery scroll listener for user input (even if page isnt scrollable)

분류에서Dev

Body tag not aligning to top position

분류에서Dev

Docker Container running.But page isnt working in localhost URL(Page didnt send any data)

분류에서Dev

Load only body on page change

분류에서Dev

Redirecting to a part of a page, specifically top of the page

분류에서Dev

Floated Div가있는 Ghost Top Body Margin

분류에서Dev

How to remove the margin at the top of my page

분류에서Dev

Html and css social buttons stuck top of the page

분류에서Dev

Keep a div at top of page, but beneath other divs

분류에서Dev

Acumatica API Select Branch on top of page

분류에서Dev

How to scroll to the top of a page using jQuery?

분류에서Dev

Fixed top navigation disappears after page reload

분류에서Dev

jQuery close button isnt working

분류에서Dev

HTML img, alt="" isnt working

분류에서Dev

Animating DIV to Bottom of page and then on another click animate again to Top

분류에서Dev

Rails Kaminari - How to Show Pagination Links at the Top and Bottom of the Page?

분류에서Dev

XSL-FO no text-indent at the top of a new page

분류에서Dev

After trigger click using a hash in the URL the page needs to scroll to top

분류에서Dev

Revisited - Modify URL Before TOP LEVEL Page Loading in Firefox

분류에서Dev

how to display my own custome message in the top of admin page

분류에서Dev

When the image of my slideshow changes, the browser jumps to the top of the page?

분류에서Dev

How to keep a label widget (Page title) in Tkinter at the top of a frame

분류에서Dev

compare vertical distance from the top of an element and scroll distance from top of the page

분류에서Dev

html-body margin-top : 40px 작동하지 않음

분류에서Dev

Yii2에서 margin-top body 태그 고정

분류에서Dev

How to render an element on top of every other element on page without depending on the structure/styles used in the page?

분류에서Dev

Service in my application isnt being recreated

분류에서Dev

Image width in canvas isnt being displayed correctly

Related 관련 기사

  1. 1

    How can I remove space between body and top of page

  2. 2

    jQuery scroll listener for user input (even if page isnt scrollable)

  3. 3

    Body tag not aligning to top position

  4. 4

    Docker Container running.But page isnt working in localhost URL(Page didnt send any data)

  5. 5

    Load only body on page change

  6. 6

    Redirecting to a part of a page, specifically top of the page

  7. 7

    Floated Div가있는 Ghost Top Body Margin

  8. 8

    How to remove the margin at the top of my page

  9. 9

    Html and css social buttons stuck top of the page

  10. 10

    Keep a div at top of page, but beneath other divs

  11. 11

    Acumatica API Select Branch on top of page

  12. 12

    How to scroll to the top of a page using jQuery?

  13. 13

    Fixed top navigation disappears after page reload

  14. 14

    jQuery close button isnt working

  15. 15

    HTML img, alt="" isnt working

  16. 16

    Animating DIV to Bottom of page and then on another click animate again to Top

  17. 17

    Rails Kaminari - How to Show Pagination Links at the Top and Bottom of the Page?

  18. 18

    XSL-FO no text-indent at the top of a new page

  19. 19

    After trigger click using a hash in the URL the page needs to scroll to top

  20. 20

    Revisited - Modify URL Before TOP LEVEL Page Loading in Firefox

  21. 21

    how to display my own custome message in the top of admin page

  22. 22

    When the image of my slideshow changes, the browser jumps to the top of the page?

  23. 23

    How to keep a label widget (Page title) in Tkinter at the top of a frame

  24. 24

    compare vertical distance from the top of an element and scroll distance from top of the page

  25. 25

    html-body margin-top : 40px 작동하지 않음

  26. 26

    Yii2에서 margin-top body 태그 고정

  27. 27

    How to render an element on top of every other element on page without depending on the structure/styles used in the page?

  28. 28

    Service in my application isnt being recreated

  29. 29

    Image width in canvas isnt being displayed correctly

뜨겁다태그

보관