mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:42:44 +00:00 
			
		
		
		
	 6b3b056476
			
		
	
	
		6b3b056476
		
	
	
	
	
		
			
			All of the following properties in the font shorthand can be `normal`: - font-style - font-variant - font-weight - font-stretch This means that we must allow up to four consecutive `normal` at the start of a font shorthand value.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			356 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			356 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html><style>
 | |
| .one { font: normal 200px/1 SerenitySans; }
 | |
| .two { font: normal normal 200px/1 SerenitySans; }
 | |
| .three { font: normal normal normal 200px/1 SerenitySans; }
 | |
| .four { font: normal normal normal normal 200px/1 SerenitySans; }
 | |
| </style>
 | |
| <span class=one>1</span>
 | |
| <span class=two>2</span>
 | |
| <span class=three>3</span>
 | |
| <span class=four>4</span>
 |