css问题为什么我的图片不显示?

时间:2013-03-29 19:14:52

标签: css

这是我第一次使用堆栈溢出,所以如果你能为我解答这一点,我将不胜感激。我的css有问题,因为它没有显示我希望在我的网站上显示的三个图像。其中两个图像用于网站的顶部边框和底部边框,标题图像是将在网站中显示的主图像。 下面是我的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;
}

1 个答案:

答案 0 :(得分:1)

您应该阅读有关CSS基础知识的更多信息。一个好的开始是Mozilla Developer Network。您的css文件中有几个语法错误。试试这里:

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

但请注意,这仅适用于具有 YourImageClass 类的元素。 E.g:

<div class="YourImageClass">...</div>