mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:32:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			413 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			413 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <style>
 | |
|     body {
 | |
|         font-family: 'SerenitySans';
 | |
|     }
 | |
| 
 | |
|     .container {
 | |
|         display: flex;
 | |
|         border: 1px solid salmon;
 | |
|         width: 250px;
 | |
|         flex-wrap: wrap;
 | |
|     }
 | |
| 
 | |
|     .box {
 | |
|         width: 100px;
 | |
|         height: 100px;
 | |
|         border: 1px solid black;
 | |
|     }
 | |
| </style>
 | |
| <div class="container">
 | |
|     <div class="box">1</div>
 | |
|     <div class="box">2</div>
 | |
|     <div class="box">3</div>
 | |
| </div>
 | 
