table中td的宽度不随文字变宽

1.设置了table的宽度后,宽度仍然不固定,td的内容一多,很容易吧table撑变形。有些时候我们需要设置固定的宽度。

解决办法

  table的css 加入样式  table-layout:fixed;

  td的css  加入样式 word-wrap:break-word; /*自动换行*/

如果不想自动换行可以设置超出部分隐藏 (想设置超出隐藏的层都可以用)

  td的css 加入样式  overflow:hidden;

           white-space:nowrap;

           text-overflow:ellipsis;

======================================

2.button的选中状态去掉蓝色边框

  只需要在button的样式中加入  outline: none;

=======================================

3.鼠标的状态设置

  禁用   cursor: not-allowed;

上一篇:Object.keys(),Object.values(),Object.entries()


下一篇:解决springboot项目请求出现非法字符问题 java.lang.IllegalArgumentException:Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986