Skip to content

Instantly share code, notes, and snippets.

@BroHui
Created August 30, 2017 06:15
Show Gist options
  • Save BroHui/3ee471b09d6f1ce463552533da517ecc to your computer and use it in GitHub Desktop.
Save BroHui/3ee471b09d6f1ce463552533da517ecc to your computer and use it in GitHub Desktop.
表格内容过长自动省略CSS模版
<td class="autocut">
table{
/* width:200px; */
table-layout: fixed;
}
.autocut{
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
-o-text-overflow:ellipsis;
-icab-text-overflow: ellipsis;
-khtml-text-overflow: ellipsis;
-moz-text-overflow: ellipsis;
-webkit-text-overflow: ellipsis;
}
.autocut:hover
{
overflow:visible;
white-space:normal;
word-wrap: break-word;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment