Advertisement
Advertisement
| 11.21.2007 at 02:55AM PST, ID: 22975083 | Points: 250 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: |
complete CSS Code is here,
----<.thumbnail{
position: relative;
z-index: 1;
}
.thumbnail img {
padding:5px;
border:1px solid #CCCCCC;
}
.thumbnail:hover{
background-color: transparent;
z-index: 2;
text-decoration:none;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: white;
left: -500px;
border: 1px #C3D6EE solid;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbnail span img{ /*CSS for enlarged image*/
padding:5px;
border:1px solid #000;
border-color: #CCCCCC;
}
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
padding: 3px;
width: 200px;
height: 0 auto;
left: -10px;
/*position where enlarged image should offset horizontally */
}>----
|