css一行中多余字段用点点代替

//ie中
.title_context{
 text-decoration: none;
 white-space:nowrap;
 overflow:hidden;
 text-overflow:ellipsis;
}
//firefox中

 

.ellipsis1_huo_hu {
	-o-text-overflow:ellipsis;
	text-overflow: ellipsis;
	-moz-binding: url('ellipsis.xml#ellipsis');
	width:100px;
	clear:both;
	white-space:nowrap;
	float:left;
	overflow:hidden;
	border:0px solid #ccc;
}

 

你可能感兴趣的:(xml,css,IE,firefox)