6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CSSスプライトのやり方と、_線が入る問題対応

Last updated at Posted at 2014-09-29

CSSスプライト用の画像を準備。

  • default.png

default.png

表示例

index.html
<style>
a.sprite {
        line-height:45px;
        display:block;
        background:url(default.png) no-repeat top left;
}
a.sprite:hover {
        background-position: bottom left;
}
a.ok {
        text-decoration:none;
}
</style>

<p>画像が表示されない例</p>
  <a href="#" class="sprite sample1"></a>

<p>画像が表示されるが、画像に_が入る</p>
  <a href="#" class="sprite sample2">&nbsp;</a>

<p>期待どおりに表示</p>
  <a href="#" class="sprite sample3 ok">&nbsp;</a>

pict.png

6
5
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?