style(clothesType): 优化列表页面样式和功能
-为表格单元格设置文本居中、单行显示、超出隐藏和省略号效果
- 限制图片最大宽度为 100px
- 自定义滚动条样式,高度为 20px,背景色为 #f4f4f4
| | |
| | | </div> |
| | | </form> |
| | | <table lay-filter="scGroupTable" lay-data="{id: 'scGroupTable'}"></table> |
| | | <style type="text/css"> |
| | | .layui-table cell{ |
| | | text-align:center; |
| | | height: auto; |
| | | white-space: nowrap; /*文本不会换行,在同一行显示*/ |
| | | overflow: hidden; /*超出隐藏*/ |
| | | text-overflow: ellipsis; /*省略号显示*/ |
| | | } |
| | | .layui-table img{ |
| | | max-width:100px |
| | | } |
| | | |
| | | ::-webkit-scrollbar { |
| | | height: 20px !important; |
| | | background-color: #f4f4f4; |
| | | } |
| | | </style> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | </div> |
| | | </form> |
| | | <table lay-filter="scTable" lay-data="{id: 'scTable'}"></table> |
| | | <style type="text/css"> |
| | | .layui-table cell{ |
| | | text-align:center; |
| | | height: auto; |
| | | white-space: nowrap; /*文本不会换行,在同一行显示*/ |
| | | overflow: hidden; /*超出隐藏*/ |
| | | text-overflow: ellipsis; /*省略号显示*/ |
| | | } |
| | | .layui-table img{ |
| | | max-width:100px |
| | | } |
| | | |
| | | ::-webkit-scrollbar { |
| | | height: 20px !important; |
| | | background-color: #f4f4f4; |
| | | } |
| | | </style> |
| | | </div> |
| | | </div> |
| | | </div> |