0

我是 CSS 新手,当我尝试插入 abackground-image时,它不会出现。

HTML:

<div id="logo"></div>

CSS:

#logo {
   background-image: url(../images/logo.png);
   background-repeat: no-repeat;
   width: 376px;
   height: 81px;
   margin-top: 28px;
   margin-left: 128px;
}
4

1 回答 1

6

您需要在 URL 中的路径周围加上引号,并在高度和宽度之后使用分号

#logo {
    background-image: url("../images/logo.png");
    background-repeat: no-repeat;
    width: 376px;
    height: 81px;
    margin-top: 28px;
    margin-left: 128px;
}
于 2012-07-24T11:37:05.233 回答