Forum Moderators: not2easy
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<base href="http://www.webmasterworld.com/gfx/">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>images hover test</title>
<style type="text/css">
body {
background-color:#f0f0f0;
}
#container {
width:550px;
margin:20px auto;
border:1px solid #666;
background-color:#fcfcfc;
}
#icons {
text-align:center;
}
#icons img {
width:50px;
height:50px;
border:1px solid #999;
cursor:pointer;
}
#icons img:hover {
width:200px;
height:200px;
}
#bar {
width:400px;
height:5px;
background-color: #966;
margin:auto;
}
#bar1 {
width:550px;
height:5px;
background-color: #966;
margin-top:-3px;
}
</style>
</head>
<body>
<div id="container">
<div id="bar"></div>
<div id="icons">
<img src="logo.png" alt="">
<img src="logo.png" alt="">
<img src="logo.png" alt="">
<img src="logo.png" alt="">
<img src="logo.png" alt="">
<img src="logo.png" alt="">
<img src="logo.png" alt="">
</div>
<div id="bar1"></div>
</div>
</body>
</html>