0

スタック オーバーフローを使用するのはこれが初めてなので、これに答えていただければ幸いです。Web サイトに表示したい 3 つの画像が表示されないため、css に問題があります。画像のうち 2 つは Web サイトの上枠と下枠用で、ヘッダー画像は Web サイトに表示されるメイン画像です。以下は私の css のコピーです。ご連絡いただければ、感謝の気持ちでいっぱいです。

   body, h1, p, nav ul {
    margin: 0;
    padding: 0;
    color: "#B0E0E6";
}
table{id:"Table_01" width="1500" border="0" cellpadding="0" cellspacing="0"




}
img {
    id:top ;
    src:"205 images/top.jpg";
    width:1750px;
    height:154px;

   margin-top: 5px;
}

nav ul li {
    display:inline;

}

nav ul li a {
    text-decoration: none;
    color: black;
    height: 40px;
    border-bottom: 0px solid black;
    border-top: 0px solid black;
    padding-left: 300px;
    padding-top: 5px;
}

nav ul li a:hover {
    background-color: white;
    color: red;
}
h1 {
    padding-top: 50px;
    padding-left: 0px;
    color: yellow;
    font-size: 90px;

    white-space: nowrap;
    margin-left:0px;
    margin-top:150px;
    position: relative;
}
h2 {
    padding-top: 50px;
    padding-left: 30px;
    color: black;
    text-align: left;
    margin-left: opx;

}

h3 {  
    padding-top: 50px;
    padding-left: 30px;
    color: white;
    margin-right:155px;
    margin-top:-100px;
    position: relative;
    float: right;
    text-align: top;
 }




  }
 header { 
    background-image: url('banner.jpg');
    background-repeat: no-repeat;
    height:400px;
    width:1750px;

    margin-top:250px;
    position:relative;
    float: left;


}





 }


footer ul {
    list-style: none;
}
footer ul li {
    display:inline;
}
footer ul li a {
      text-decoration: none;
    color: black;
    height: 50px;
    border-bottom: 0px solid black;

    padding-left: 300px;
    padding-top: 5px;
}
footer ul li a:hover {
    background-color: blue;
    color: black;
}
footer {
    background-color: white;
    bottom:0px;
    width: 1750px;
    color: white;
    clear: both;
    margin-bottom: 10px;

}
img {

    src:"205 images/bottom.jpg";
    width:1750px;
    height:132px;
    alt:"";
    position: relative;
    bottom: 600px;
}

nav {
    background-color: blue;
    width: 1750px;
    float: left;
    margin-top: 130px;
}
article {
    background-color:#ADD8E6 ;
    color: black;
    text-align:left;
    margin-left: 0px;
    margin-bottom: 5px;
    font-size: 20px;
    }
forms{

 margin-left:300px;
 width: 10em;
 margin-bottom: 300px


}

#page {
    background-color: #ADD8E6;
    width: 800px;
    margin: auto;
}
4

1 に答える 1

1

CSS の基本について詳しく読む必要があります。開始するのに適したポイントはMozilla Developer Networkです。css ファイルにいくつかの構文エラーがあります。ここでこれを試してください:

.YourImageClass {
    background:url("images/top.jpg");
    width: 1750px;
    height: 154px;
    margin-top: 5px;
}

ただし、これはYourImageClassクラスを持つ要素に対してのみ機能することに注意してください。例えば:

<div class="YourImageClass">...</div>
于 2013-03-29T19:19:19.530 に答える