table td { height: 25px; line-height: 25px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } table td:hover { /* 鼠标滑过 显示隐藏的内容 伴有横向的滚动条 */ overflow: auto; text-overflow: clip; }
效果:table中文字进行了隐藏,当鼠标移动上去的时候,有滑动条可以拉动数据
table td { height: 25px; line-height: 25px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } table td:hover { /* 鼠标滑过 显示隐藏的内容 伴有横向的滚动条 */ overflow: auto; text-overflow: clip; }
效果:table中文字进行了隐藏,当鼠标移动上去的时候,有滑动条可以拉动数据