协助html和css

时间:2016-08-14 08:45:05

标签: html css

我试图为我的网站制作一个加载页面,但顶部有一条白线,左侧有一条白线。有人可以帮我这个, 感谢。

<DOCTYPE html>
<html>
<head>
    <style>

        html {
            cursor: none;
        }

        .container {
            background-color: black;
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: 1000;
        }

        p {
            color: white;
            text-align: center;
            position: absolute;
            top: 0; bottom:0; left: 0; right:0;
            font-family: courier;
            font-weight: bold;
        }

        img {
            position: absolute;
            top: 0; bottom:0; left: 0; right:0;
            margin: auto;
        }       

    </style>

</head>
<body>
    <div class="container">
            <img src="progress.gif">
            <p> Loading... Please wait </p>
    </div>

1 个答案:

答案 0 :(得分:1)

它是默认保证金,您可以添加

body {
    margin: 0;
}

到你的CSS。