- 多个表格并列对齐,线条错位
table, tbody{
TABLE-LAYOUT: fixed;
WORD-BREAK: break-all;
}
- 表格border颜色问题, 在iphone和安卓上表现不一致
tbody, table{
display: table;
width: 100%;
border-color: #E6E6E6;
border: none;
box-sizing: border-box;
TABLE-LAYOUT: fixed;
WORD-BREAK: break-all;
}
td{
border-color: #E6E6E6;
}
网友评论