Click here to Skip to main content
15,889,403 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi I write a small gallery but when (ul.gallery li:hover ) can not stretch my image. What could be the problem?
http://www.gogofile.com/Default.aspx?p=sc&ID=634509560043108750_3345

CSS
ul.gallery li:hover
{
    position: relative;
    top: -56px;
    left: -75px;
    width: 250px;
    height: 188px;
    padding: 3px;
    border: 3px solid #000;
    z-index: 1;

}
Posted
Updated 6-Sep-11 19:48pm
v3
Comments
Sergey Alexandrovich Kryukov 7-Sep-11 1:46am    
There is no relevant information.
--SA

Your CSS fragment has nothing to do with stretching, that's why.

The syntax is wrong. You probably mean

CSS
ul.gallery { li:hover; }


—SA
 
Share this answer
 
you can see my code in top link
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900