Advertisement
Guest User

Untitled

a guest
Jul 24th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <html lang=="en">
  2. <meta name="viewport" content="width=device-width, initial-scale=1">
  3.  
  4. <head>
  5. <meta charset="utf-8">
  6. <title>Deut65</title>
  7. <link href="site.css" rel="stylesheet">
  8. </head>
  9.  
  10. <body>
  11.  
  12. <ul id="nav">
  13. <img id="logo" src="logo.png"></img>
  14. <li><a href="#home">Home</a></li>
  15. <li><a href="#editor">Editor</a></li>
  16. <li><a href="#about">About</a></li>
  17. </ul>
  18.  
  19.  
  20. <div id="image-div">
  21. <img id="top-image"src="fotoDeut65.jpeg">
  22. <button id="image-button">Button</button>
  23. </div>
  24.  
  25.  
  26. <style>
  27.  
  28.  
  29. #image-div{
  30. top: -50%;
  31. left: -50%;
  32. width: 100%;
  33. height: 100%;
  34. }
  35.  
  36. #top-image{
  37. position: absolute;
  38. top: 0;
  39. left: 0;
  40. right: 0;
  41. bottom: 0;
  42. margin: auto;
  43. min-width: 100%;
  44. min-height: 100%;
  45. width: 400px;
  46. height: auto;
  47. }
  48.  
  49. #image-button{
  50. position: relative;
  51. z-index: 1;
  52. margin-left: auto;
  53. margin-right: auto;
  54. top: 191px;
  55. left: 420px;
  56. right: -420px;
  57. bottom: -191px;
  58. }
  59. </style>
  60.  
  61.  
  62.  
  63.  
  64. <!--until here-->
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement