Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <HTML>
  4.     <HEAD>
  5.         <meta charset="utf-8">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
  7.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
  8.     </HEAD>
  9.     <STYLE>
  10. #wrapper {
  11.     color: black;
  12.     background-color: #D8D8D8;
  13.     width: 1280px; /* Breite des Inhaltsbereichs */
  14.     height: 800px;
  15.     margin-top: 10px;
  16.     margin-right: auto; /* Abstand rechts */
  17.     margin-bottom: 10px;
  18.     margin-left: auto; /* Abstand links */
  19.  
  20. }
  21. #imageBox{
  22.     display: inline-block;
  23.     background-color: #2EFE2E;
  24.     width: 500px;
  25.     height: 500px;
  26.     margin-top: 100px;
  27.     margin-left: 50px;
  28. }
  29. #pyramidBox{
  30.     display:inline-block;
  31.     background-color: #2E2EFE;
  32.     width: 550px;
  33.     height:650px;
  34.     margin-top: 100px;
  35.     margin-right: 50px;
  36.     bottom: 0px;
  37.     float: right;
  38. }
  39. #resultBox{
  40.     display: inline-block;
  41.     position: absolute;
  42.     background-color: #FF0000;
  43.     width: 300px;
  44.     height: 100px;
  45.     margin-right:auto;
  46.     margin-left:auto;
  47.     bottom: 0;
  48.  
  49.  
  50. }
  51.     </STYLE>
  52.    
  53.     <BODY>
  54.         <div id="wrapper">
  55.             <div id="imageBox">
  56.                
  57.             </div>
  58.             <div id="pyramidBox">
  59.  
  60.             </div>
  61.             <div id="resultBox">
  62.  
  63.             </div>
  64.  
  65.  
  66.  
  67.  
  68.  
  69.         </div>
  70.  
  71.  
  72.     </BODY>
  73.  
  74.  
  75. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement