Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. body {
  2. -moz-background-size: 100%; /* Firefox 3.6+ */
  3. -webkit-background-size: 100%; /* Safari 3.1+ и Chrome 4.0+ */
  4. -o-background-size: 100%; /* Opera 9.6+ */
  5. background-size: 100%; /* Современные браузеры */
  6. }
  7.  
  8. #container {
  9. position: relative;
  10. width: 100%;
  11. }
  12.  
  13. #left {
  14. position: absolute;
  15. top: 0px;
  16. left: 0px;
  17. width: 50%;
  18. }
  19.  
  20. #right {
  21. position: absolute;
  22. top: 0px;
  23. right: 0px;
  24. width: 50%;
  25. }
  26.  
  27. .img {
  28. position:fixed;
  29.  
  30. display: inline-block;
  31. min-width:50%;
  32. min-height:100%;
  33. background: transparent url(http://htmlbook.ru/example/images/sun1.png) ; /* Путь к файлу с исходным рисунком */
  34. }
  35.  
  36.  
  37.  
  38. .img:hover {
  39. width:50px;
  40. height:10px;
  41. background: url(http://htmlbook.ru/example/images/sun2.png) no-repeat; /* Путь к файлу с исходным рисунком */
  42. }
  43.  
  44. <!DOCTYPE html>
  45. <html>
  46. <head>
  47. <meta charset="utf-8">
  48. <title>Demo</title>
  49.  
  50. <link href="style.css" rel="stylesheet" type="text/css" />
  51.  
  52. </head>
  53. <body>
  54.  
  55. <div id="container">
  56. <div id="left">
  57.  
  58. <a class="img" href="sample.html" class="rollover"></a>
  59.  
  60. </div>
  61.  
  62. <div id="right">
  63.  
  64. <a class="img" href="sample.html"><img src="http://htmlbook.ru/example/images/sun2.png" id="bg" alt="" /></a>
  65.  
  66. </div>
  67. </div>
  68.  
  69. </body>
  70. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement