css table 内容溢出 省略号 用title提示全部内容

Alt

1.先上效果图

效果图1

2.源码

<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<script>
 $(document).ready(function(){
  $("th").mouseover(function(){
   var cnt = $(this).text(); 		/*获取th标签里的内容cnt,设置title的内容为cnt*/
   $(this).attr("title",cnt);
  });
 $("td").mouseover(function(){
   var cnt = $(this).text(); 		/*获取th标签里的内容cnt,设置title的内容为cnt*/
   $(this).attr("title",cnt);
  });
 
 });

</script>
<style type="text/css">
table{
	width:400px;
	height:200px;
	border-color:red;
	table-layout:fixed;		/*固定宽高,表格不会变形*/
}
table th{
	width:200px;
	height:100px;
	border-color:red;
	white-space: nowrap;	/*内容不要换行,换行的话div会被撑开变高*/
	text-overflow:ellipsis;	/*内容溢出用省略号表示*/
	overflow:hidden;		/*内容溢出不会出现滚动条*/
}
table td{
	width:200px;
	height:50px;
	border-color:red;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
}

</style>
</head>
<body>
<div>
	<table border="1" cellspacing="0" cellpadding="0" >
		<tr><th>宽200,高100</th><th>整个表格  都有边框,直接在table上设置border="1" cellspacing="0" cellpadding="0".看看这里是不是用省略号代替了呢?????看看这里是不是用省略号代替了呢?????看看这里是不是用省略号代替了呢?????</th></tr>
		<tr><td>宽200,高50</td><td>222</td></tr>
		<tr><td>111</td><td>使用省略号代替省略的内容,鼠标悬置会用title的形式展示出来;使用省略号代替省略的内容,鼠标悬置会用title的形式展示出来;</td></tr>
	</table>
</div>
</body>
</html>
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值