LoginSignup
1
1

More than 5 years have passed since last update.

visibilityで画像置換する

Posted at

html

qiita.html
<div class="btn">
    <a href="#">
        <img src="btn_off.gif" width="110" height="50" alt="ボタン" />
    </a>
</div>

css

qiita.css
.btn a {
  display: block;
  width: 110px;
  height: 50px;
}

.btn a:hover {
  background: url(btn_on.gif) no-repeat;
}

.btn a:hover img {
  visibility: hidden;
}
1
1
0

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
1
1