Hi!
I’ve made a image rollover, and the rollover itself works perfectly fine. The thing is that it have created one line break before and one after the image. I have no idea how to fix this and would be really grateful if someone knew and could tell me what was wrong!
The site: http://www.unganyskapare.se/kontakt
The four images are supposed to be in line, it’s the third one I’ve given the rollover effect.
The code:
- php:
- css:
#omOss
{
display: block;
width: 200px;
height: 300px;
background: url(“media/om.png”) no-repeat 0 0;
}
#omOss:hover
{
background-position: -200 0px;
}
#omOss span
{
position: absolute;
top: -999em;
}
thanks!