Created
August 30, 2017 06:15
-
-
Save BroHui/3ee471b09d6f1ce463552533da517ecc to your computer and use it in GitHub Desktop.
表格内容过长自动省略CSS模版
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<td class="autocut"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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