2

申し訳ありませんが、私は HTML に関しては初心者です。しかし、どこが間違っているのかわかりません。ページを中央に配置するように宣言しましたが、何らかの理由で見えないため、実際には配置されません!

私のコードはここにあります...

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>

<head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">
<!--
body,td,th {
    font-size: 14px;
    text-shadow: inherit;
    max-width: 1000px;
    min-width: 600px;
    float: none;
    vertical-align: central;
    position: absolute;
    width: auto;
}
h1 {
    font-size: 40px;
    color: #FFF;
}
h1,h2,h3,h4,h5,h6 {
    font-family: Arial, Helvetica, sans-serif;
    color: #FFFFFF;
}
h2 {
    font-size: 16px;
    color: #666;
}
h3 {
    font-size: 24px;
    color: #FFFFFF;
}
.Headertext2 {
}
h5 {
    font-size: 16px;
    color: #666;
}

h6 {
    font-size: medium;
    color: #000;
}
h4 {
    font-size: 12px;
    color: #FFF;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: #999;
}
a:active {
    text-decoration: none;
}
      </style>      <title>We'll fix your Potholes!</title>
    </head><center>
 <body bgcolor="#B90D32"> <div id="container" width "1200" align="center" >
<h1>A1Jay Pothole Solutions</h1>
<h3><strong>Permanent Pothole Repair that lasts</strong></h3>
<div id="content" align="center" bgcolor="#FFFFFF"  width"600" class="content">
  <h6>Potholes are a growing problem and cause lasting damage to your vehicle. 
  We here at A1JAy Pothole Solution have the solution. We use only the best products on the market to repair potholes ensuring that the problem is fixed permanently and never returns. Our repairs are professional water tight and permanent. We replace any road markings that may be removed. We respond quickly to repair any holes, therefore stopping the damage to your vehicle.
    Our products are cold lay, fully graded to PSV-60 and all packaging is recyclable. 

    We have different rates depending on the amount of potholes you require permanently repairing, get in touch for details.

    If you have a pothole on your drive, street, place of work, car park, walkway or anywhere else, please get in contact and I will happily give you a free, no obligation quote..  </h6>
<p>&nbsp;</p>

  </div>
</div>
</body>

</html>

この質問が既にされている場合は申し訳ありませんが、私はまだ Stack Overflow について知りたいと思っています。前もって感謝します :)。

4

2 に答える 2

3

簡素化された(そして機能している)ソリューションから始めましょう:http://jsfiddle.net/WDTCK/1/

主なポイント

  • <center>廃止されました*(これはの違法な親でもありbody、あなたの例では閉じられていません)
  • align=center廃止されました*
  • CSSを使用して何かを中央に配置する簡単な方法は、コンテナ要素に幅とmargin: 0 auto

このような:

#container {
    margin: 0 auto;
    width: 600px;    
}

マイナーポイント

  • マークアップとは別に宣言されたスタイルを常に優先する
  • 常にCSSを使用してスタイルを宣言します(のような非推奨のプロパティではありませんbgcolor="#B90D32"
  • 見出しを正しく使用していることを確認してください。H1、H3、H6が見えます。見出しは、ドキュメントの概要を表す必要があります。フォーマットのためだけに使用するべきではありません。

より良いセマンティクスを示すよりクリーンな例を次に示します。http://jsfiddle.net/WDTCK/2/

* 「廃止され、不適合であり、[...]作成者が使用してはなりません。」

于 2013-03-09T09:03:23.337 に答える
-2

これを体の中に入れて

    <div align = "center">
    <!--somecodes-->
    </div>
于 2013-03-09T09:03:52.903 に答える