当前位置 : 主页 > 网页制作 > css >

黄聪:table自适应宽度和高度

来源:互联网 收集:自由互联 发布时间:2021-06-13
自适应宽度: td { width : 1px ; white-space : nowrap ; /* 自适应宽度 */ word-break : keep-all ; /* 避免长单词截断,保持全部 */ } 自适应高度 table { table-layout : fixed ; width : 100% ; }

自适应宽度:

td {
    width: 1px;
    white-space: nowrap; /* 自适应宽度*/
    word-break:  keep-all; /* 避免长单词截断,保持全部 */
}

自适应高度

table { 
      table-layout: fixed; 
      width: 100%; 
}
网友评论