Joshua4550 Posted May 23, 2010 Share Posted May 23, 2010 Hey guys, Just a quick question - If I had a button, say 200px.. but it had 2 similar images on it, for eg: 2 buttons, the first 100px height would be one button, then the next 100px of height would be the same button, but lighter (for hovor-over effects) Is there an easy way to use this as one image, and have it so when you hovor over, it shows the bottom 100px - otherwise it shows the top 100px? Thanks in advance! Quote Link to comment Share on other sites More sharing options...
Joshua4550 Posted May 23, 2010 Author Share Posted May 23, 2010 Figured it. For anyone wanting the same thing: <style type="text/css"> div.button { background:url(/imgs/button.gif) no-repeat 0 0; width:200px; height:100px; } div.button:hover { background-position:0 -100px; } </style> <div class="button"></div> (button.gif is 200x200 px) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.