css question
css question
Out of context: Reply #2
- Started
- Last post
- 8 Responses
- Kevin_Sweeney0
the images are shrinking a bit when you rollover so its just a matter of
#divName {
height: 200px;
width: 200px;
background-image: url('image1.jpg');
}#divName:hover {
height: 400px;
width: 400px;
background-image: url('image1_rollover.jpg');
}