标题图片没有显示

时间:2014-11-24 15:09:05

标签: html css

HTML:

<div id="page">
<header>
    <img srs="catlogo.jpg" alt= "logo" width= "100px" height= "100px" />
    <h1><center>Mobile Cat Grooming Service</center></h1>
</header>

CSS:

header {
    float: left;
    clear: both;
    width: 96%;
    color: #fff;
    background-color: #660066;
    padding: 2%;

}
header img {
  float: left;
  width: 100px;
  height: 100px;
  background: #660066;
}

尝试在网站标题的左上角添加徽标;但它没有显示。盒子不是图像。老实说,我怀疑我在这里做了很多正确的事情。

2 个答案:

答案 0 :(得分:3)

您写道:

<img srs="catlogo.jpg" alt="logo" width="100px" height="100px" />

应该是src,而不是srs

<img src="catlogo.jpg" alt="logo" width="100px" height="100px" />

答案 1 :(得分:1)

使用src =“”代替srs =“”:)