mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-11-04 21:02:09 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			283 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			283 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
.multi-ellipsis(@lines) {
 | 
						|
  display: -webkit-box;
 | 
						|
  overflow: hidden;
 | 
						|
  text-overflow: ellipsis;
 | 
						|
  -webkit-line-clamp: @lines;
 | 
						|
 | 
						|
  /* autoprefixer: ignore next */
 | 
						|
  -webkit-box-orient: vertical;
 | 
						|
}
 | 
						|
 | 
						|
.ellipsis() {
 | 
						|
  overflow: hidden;
 | 
						|
  white-space: nowrap;
 | 
						|
  text-overflow: ellipsis;
 | 
						|
}
 |