`
alan3258
  • 浏览: 70953 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表

表格截字省略号

    博客分类:
  • html
<html> <head> <title>表格自动换行显示第一行</title> </head> <style> table{table-layout: fixed; } //这里是主要的 td{ -o-text-overflow:ellipsis; text-overflow:ellipsis; white-space:nowrap; overflow:hidden; } </style> <body> <table width="300&qu ...
<html> <head> <title>表格自动换行,并只显示第一行</title> </head> <style> table{table-layout: fixed;} td{word-break: break-all; word-wrap:break-word;height:20px;padding:3px } </style> <body> <table width="300" border="1"> <t ...
Global site tag (gtag.js) - Google Analytics