Advertisement
piffy

HTML Position

Sep 18th, 2022
733
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.50 KB | None | 0 0
  1.  
  2. <html>
  3.     <head>
  4.        <style>
  5.         .static {
  6.             position: static;
  7.             left: 10px;
  8.             bottom: 10px;
  9.             background-color: yellow;
  10.             padding: 10px;
  11.         }
  12.  
  13.         .relative {
  14.             position: relative;
  15.             left: 10px;
  16.             bottom: 10px;
  17.             background-color: yellow;
  18.             padding: 10px;
  19.         }
  20.  
  21.         .absolute {
  22.             position: absolute;
  23.             left: 10px;
  24.             bottom: 10px;
  25.             background-color: yellow;
  26.             padding: 10px;
  27.         }
  28.  
  29.         .genitore-assoluto{
  30.             position: relative;
  31.             height: 100px;
  32.             padding: 10px;
  33.             background-color: #81adc8;
  34.         }
  35.  
  36.  
  37.         .fixed {
  38.             position: fixed;
  39.             bottom: 10px;
  40.             left: 10px;
  41.             background-color: yellow;
  42.             padding: 10px;
  43.         }
  44.  
  45.  
  46.         .figlio {
  47.             padding: 10px;
  48.             background-color: #f2f2f2;
  49.         }
  50.        </style>
  51.     </head>
  52.     <body>
  53.         <div class=""> <!-- mettere qui genitore-assoluto per gli ultimi due stily -->
  54.             <div class="figlio">
  55.                 Elemento figlio.
  56.             </div>
  57.            
  58.             <div class=""> <!-- Sostituire qui gli stili -->
  59.                 Elemento principale.
  60.             </div>
  61.            
  62.             <div class="figlio">
  63.                 Altro elemento figlio.
  64.             </div>
  65.         </div>
  66.     </body>
  67. <html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement