css如何设置td溢出隐藏
程序员文章站
2022-04-03 08:12:32
...
方法:首先使用“word-break:keep-all”语句设置不换行;然后使用“overflow:hidden”语句设置超出隐藏部分;最后使用“text-overflow:ellipsis”语句设置溢出显示省略号。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
td溢出隐藏
table{ width:100px; table-layout:fixed;/* 只有定义了表格的布局算法为fixed,下面td的定义才能起作用。 */ } td{ width:100%; word-break:keep-all;/* 不换行 */ white-space:nowrap;/* 不换行 */ overflow:hidden;/* 内容超出宽度时隐藏超出部分的内容 */ text-overflow:ellipsis;/* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden;一起使用*/ }
全部代码:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>document</title> <style> table{ width:100px; table-layout:fixed;/* 只有定义了表格的布局算法为fixed,下面td的定义才能起作用。 */ } td{ width:100%; word-break:keep-all;/* 或是 white-space:nowrap;不换行 */ overflow:hidden;/* 内容超出宽度时隐藏超出部分的内容 */ text-overflow:ellipsis;/* 当对象内文本溢出时显示省略标记(...) ;需与overflow:hidden;一起使用*/ } </style> </head> <body> <table border="1"> <tr> <td>19999</td> <td>19999</td> </tr> <tr> <td>19999</td> <td>19999</td> </tr> <tr> <td>19999</td> <td>19999</td> </tr> </table> </body> </html>
效果截图:
推荐学习:css视频教程
以上就是css如何设置td溢出隐藏的详细内容,更多请关注其它相关文章!
上一篇: 如何学习html5
推荐阅读
-
td内有图片和文字,如何都垂直居中?_html/css_WEB-ITnose
-
利用CSS让容器的溢出部分内容隐藏起来,smarty就可以不用截取字符串了
-
求解.如何给网页背景设置成一张不重复的图片?_html/css_WEB-ITnose
-
如何设置一段文字,是它的宽度是页面宽度的62%且能自动换行?_html/css_WEB-ITnose
-
css如何匹配第几个li元素并设置样式_html/css_WEB-ITnose
-
框覆盖时会覆盖背景但不覆盖文字,如何设置?_html/css_WEB-ITnose
-
Windows 2003系统,如何设置隐藏index.php 说是需要编辑httpd.ini ,但是根本找不到这个文件
-
如何设置隐藏文件夹自己依然可以看到
-
如何设置网页中的一段文字,使它的宽度是页面宽度的62%且能自动换行?_html/css_WEB-ITnose
-
如何在td中控制字体右对齐 且加粗_html/css_WEB-ITnose