0

在过去的几个小时里,我试图弄清楚为什么只有一个带有图像背景的绝对定位 div 出现。这是我的绝对定位 div 的 CSS 代码

.nastip {
position: absolute;
width: 64px;
height: 20px;
background-image: url(https://s3.amazonaws.com/assets.heroku.com/addons.heroku.com/catalogs/287/small.png);
right: -36px;
bottom: 2px;
}

这是整个代码http://jsfiddle.net/6uAvq/

我需要在绝对定位的 div 中显示两个图像。

我使用chrome浏览器。谢谢你的任何建议。

4

1 回答 1

3

在规则之前,您的 css 中有一个半列,.aakcia它终止之后出现的任何更多样式。

; /*Remove this*/
.aakcia {
    position: absolute;
    width: 64px;
    height: 20px;
    background-image: url(https://s3.amazonaws.com/assets.heroku.com/addons.heroku.com/catalogs/287/small.png);
    right: -36px;
    bottom: 20px;
}
;

小提琴

于 2013-09-14T20:31:50.327 回答