Layui table 超出自动换行
2020-05-13 本文已影响0人
超音速6
layui 的table的的cell默认是超出hidden的,如果希望超出长度自动换行便需要覆盖layui的默认样式实现
.layui-table-cell{
height:auto;
overflow:visible;
text-overflow:inherit;
white-space:normal;
}
layui 的table的的cell默认是超出hidden的,如果希望超出长度自动换行便需要覆盖layui的默认样式实现
.layui-table-cell{
height:auto;
overflow:visible;
text-overflow:inherit;
white-space:normal;
}