2016-08-14 10 views
-1

私のウェブサイトのページを読み込もうとしていますが、上に白い線があり、一番下に白い線があります。誰かがこれで私を助けてください、 ありがとう。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

それはあなたのCSSに

body { 
    margin: 0; 
} 

を追加することができ、デフォルトのマージンです。

+0

ありがとうございました。 – meme

関連する問題