1

我的工具栏有以下 css 显示社交图标:

.toolbar ul li {
    height: 102px;
    width: 102px;
    display: block;
    float: right;
    margin: 0 0 0 7px;
    padding: 0;
    background: url(images/social_icons.png) center top no-repeat;
}
.toolbar ul li a {
    width: 100%;
    height: 100%;
    display: block;
    text-indent: -9999px;
}
.toolbar ul li.facebook {
    background-position: 0 0px;
}
.toolbar ul li.facebook:hover {
    background-position: -102px 0px;
}
.toolbar ul li.twitter {
    background-position: 0 -102px;
}
.toolbar ul li.twitter:hover {
    background-position: -102px -102px;
}

但是,我希望我的图标在 HTML 中呈现时只有 34px x 34px。更高分辨率图像的原因是我可以在视网膜屏幕上更好地显示它。但是,当我更改为:

.toolbar ul li {
    height: 34px;
    width: 34px;
    display: block;
    float: right;
    margin: 0 0 0 7px;
    padding: 0;
    background: url(images/social_icons.png) center top no-repeat;
}

有任何想法吗?非常感激。

4

1 回答 1

1

使用显示inline-block代替显示块

或者:

background-size: 43px 43px;
于 2013-07-20T07:04:19.320 回答