css实现table中td单元格鼠标悬浮时显示更多内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css实现table中td单元格鼠标悬浮时显示更多内容相关的知识,希望对你有一定的参考价值。
table中,td单元格无法显示下全部内容,需要在鼠标hover时显示全部内容。
正常显示样式:
鼠标hover时:
html:
<td>displayAddress<span class="tdtip">popAddress</span></td>
css:
td{ position:relative; z-index:2; } td:hover{ z-index:3; background:none; } td .tdtip { display: none; } td:hover .tdtip { display: block; position: absolute; top: 8px; background-color: whitesmoke; color: royalblue; word-break: break-all; }
以上是关于css实现table中td单元格鼠标悬浮时显示更多内容的主要内容,如果未能解决你的问题,请参考以下文章
jquery处理列表中某字段过长的问题,先截取然后当鼠标移动到该单元格时显示全部的内容?