Advertisement
Ombashi

some.html

Sep 24th, 2020 (edited)
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.72 KB | None | 0 0
  1. <!DOCTYPE>
  2. <html>
  3.    
  4.     <body>
  5.        
  6.         <div class = 'entire'>
  7.    
  8.     <div class = 'row'>
  9.        
  10.         <div class = 'jkol'>
  11.    
  12.         <div class = 'dou'>
  13.            
  14.             <p>Text 2</p>
  15.        
  16.         </div>
  17.            
  18.                 </div>
  19.        
  20.         <div class = 'jkol'>
  21.        
  22.         <div class = 'colmnm'>
  23.            
  24.             <p>Text 1</p>
  25.        
  26.         </div>
  27.            
  28.             </div>
  29.        
  30.         </div>
  31.            
  32.             </div>
  33.    
  34.     </body>
  35.  
  36. <style>
  37.    
  38.     .entire {
  39.        
  40.         margin: 15px;
  41.     }
  42.    
  43.     .row {
  44.        
  45.         width: 100%;
  46.         flex-wrap: wrap;
  47.         display: flex;
  48.         flex-direction: row;
  49.        
  50.     }
  51.    
  52.     .jkol {
  53.        
  54.         flex-basis: 100px;
  55.         flex-direction: column;
  56.         flex: 1;
  57.         display: flex;
  58.        
  59.     }
  60.    
  61.     .dou {
  62.        
  63.         background-color: aqua;
  64.        
  65.     }
  66.    
  67.     .colmnm {
  68.        
  69.         background-color: aquamarine;
  70.     }
  71.    
  72.     </style>
  73.  
  74. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement