0
テキストの右側に背景画像として配置する必要があるCSSスプライトがあります。外部のリンクアイコンのように。また、私はテキストが完全な幅に続いて画像を望んでいます。次のように位置CSSスプライトテキストの右側にある画像
私のCSSはです:
.container
{
width:1247px;
background-color:#444;
}
.container a
{
background: transparent url(http://i.imgur.com/s5rf9GY.png) no-repeat;
height: 30px;
width: 30px;
display: block;
}
.container .external
{
background-position: -491px 2px;
}
.container .mail
{
background-position: -526px 0px;
}
フィドルのリンクは以下の通りです:
助けてください。 ありがとうございました
それは働きます!ありがとう:) – Forum