Guest User

Untitled

a guest
May 26th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <div class="background">
  2. <div class="logo">
  3. </div>
  4. </div>
  5.  
  6. .logo {
  7. background-image: url(image/logo2.png);
  8. height:40px;
  9. width:400px;
  10. margin-left:100px;
  11. display:block;
  12. margin-top:20px;
  13. }
  14.  
  15. .background {
  16. background-image: url(image/empback.png);
  17. width:100%;
  18. height:94px;
  19. min-width:1345px;
  20. }
  21.  
  22. <div class="background">
  23. <div class="logo">
  24. </div>
  25. </div>
  26.  
  27. .logo
  28. {
  29. background-image: url(image/logo2.png);
  30. height:40px;
  31. width:400px;
  32. margin-left:100px;
  33. display:block;
  34. position:absolute;
  35. top:20px;
  36. }
  37.  
  38. .background
  39. {
  40. background-image: url(image/empback.png);
  41. width:100%;
  42. height:94px;
  43. min-width:1345px;
  44. position:relative;
  45. }
  46.  
  47. .background{
  48. background: #f00;
  49. width:100%;
  50. height:94px;
  51. min-width:1345px;
  52. overflow: auto;
  53. }
  54.  
  55. .logo{
  56. position: relative;
  57. top: 10px;
  58. background-color: black;
  59. height: 40px;
  60. width: 400px;
  61. margin-left: 100px;
  62. display: block;
  63. margin-top: 20px;
  64. }
  65.  
  66. .background{
  67. position: absolute;
  68. background-color: green;
  69. width: 100%;
  70. top: 50px;
  71. height: 94px;
  72. min-width: 1345px;
  73. }
Add Comment
Please, Sign In to add comment