正如您在下面看到的,我正在使用下面的图像精灵,它工作正常。我想知道的是如何将它们用作div
不具有width
and的背景height
。
谢谢
工作正常:
.social_buttons
{
width: 30px;
height: 30px;
background-image: url('../images/social.png');
background-repeat: no-repeat;
}
.facebook
{
background-position: 0px 0px;
}
.twitter
{
background-position: -30px 0px;
}
.google
{
background-position: -60px 0px;
}
这将所有 3 个图像显示为背景并重复显示。
.mydiv
{
background-image: url('../images/social.png');
background-position: -60px 0px;
}
这将所有 3 张图像显示为背景,并且仅显示一次。
.mydiv
{
background-image: url('../images/social.png');
background-position: -60px 0px;
background-repeat: no-repeat;
}