日韩精品欧美激情国产一区_中文无码精品一区二区三区在线_岛国毛片AV在线无码不卡_亞洲歐美日韓精品在線_使劲操好爽好粗视频在线播放_日韩一区欧美二区_八戒八戒网影院在线观看神马_亚洲怡红院在线色网_av无码不卡亚洲电影_国产麻豆媒体MDX

CSS實(shí)現(xiàn)單行、多行文本溢出顯示省略號(hào)...

時(shí)間:2019-11-10 16:01:06 類型:HTML/CSS
字號(hào):    

一. CSS實(shí)現(xiàn)單行溢出顯示省略號(hào)

#dan_hang{
			height: 30px; 
			line-height: 30px;
			margin: 50px auto;
			padding: 5px;
			border: 1px solid #ccc;
			border-radius: 5px;
			font-size: 12px;
			width: 150px;
			overflow: hidden;
			text-overflow:ellipsis;
			white-space: nowrap;
	}
<div id="dan_hang">
			你好, 歡迎來(lái)到雅騰科技有限公司
</div>

實(shí)現(xiàn)效果如下:

1.jpg

二. 實(shí)現(xiàn)多行溢出顯示省略號(hào)

#duo_hang{
			width: 150px;
			border: 1px solid #ccc;
			border-radius: 5px;
			padding: 5px;
			margin: 50px auto;
			font-size: 12px;
			line-height: 26px;
			height: 78px; /*高度正好是 line-height的整數(shù)倍,防止超出的文字*/
			display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 3;
			overflow: hidden;
	}
<div id="duo_hang">
			你好, 歡迎來(lái)到雅騰科技有限公司, 我們采用“小班現(xiàn)場(chǎng)授課”、“手把手輔導(dǎo)學(xué)員”的培養(yǎng)方式, 助你早日順利實(shí)現(xiàn)IT夢(mèng)!
</div>

效果如下:

2.jpg

<