Advertisement
Guest User

Untitled

a guest
Mar 28th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.09 KB | None | 0 0
  1.  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>Untitled Document</title>
  7. <style>
  8. #images {
  9.     height: 500px;
  10.     width: 100%;
  11.     overflow: auto;
  12. }
  13.  
  14. .image {
  15.     color: black;
  16.     height: 106px;
  17.     width: 3000px;
  18.     text-align: left;
  19.     background-color: white;
  20.     white-space:nowrap;
  21.         display: inline-block;
  22. }
  23. .nohover {
  24.     background-image: url('http://info4admins.com/wp-content/uploads/2012/02/wordpress-logo.jpg');
  25.     height: 500px;
  26.     width: 500px;
  27.     background-repeat: no-repeat;
  28.     float: left;
  29. }
  30. .nohover:hover {
  31.     background-image: url('http://www.volacci.com/files/images/wordpress-logo.png');
  32. }
  33. </style>
  34.  
  35. </head>
  36. <body>
  37. <div id="images">
  38.     <div class="image">
  39.         <div class="nohover"></div>
  40.         <div class="nohover"></div>
  41.         <div class="nohover"></div>
  42.         <div class="nohover"></div>
  43.         <div class="nohover"></div>
  44.     </div>
  45. </div>
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement