View Single Post
  #10 (permalink)  
Old Oct 10th, 2006, 14:59
Ryan Fait's Avatar
Ryan Fait Ryan Fait is offline
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: CSS Image swap issue

Just a little tid-bit. If you're using multiple rollovers with different sizes, you can access them all with one class instead of defining different pixel heights:

Code: Select all
a.flip:hover {
    background-position: 0 100%;
}
Reply With Quote