CSS 超出宽度显示省略号

<h2><a>title</a></h2>

h2{ width:120px; line-height:18px; font-size:12px; color:#000; text-overflow:ellipsis; overflow:hidden; white-space:nowrap;}
关键作用是以下三个属性: text-overflow:ellipsis; overflow:hidden; white-space:nowrap;

你可能感兴趣的:(CSS 超出宽度显示省略号)