14 lines
		
	
	
		
			297 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			297 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| @import url("reset-to-defaults.css");
 | |
| 
 | |
| * {
 | |
|   background-image: linear-gradient(red, blue, red);
 | |
|   background-size: 20px 20px;
 | |
|   background-position: 50%;
 | |
| }
 | |
| 
 | |
| #reference {
 | |
|   background-image: linear-gradient(blue, red, blue, red, blue);
 | |
|   background-size: initial;
 | |
|   background-position: initial;
 | |
| }
 | 
