如何使<td>的宽度自动显示?

时间:2019-12-26 16:47:48

标签: html css

有没有一种方法可以指定<td>的边距,以使的宽度自动调整以使表格的宽度与其父表格的宽度一样(宽度:100%;)?

1 个答案:

答案 0 :(得分:1)

通过在HTML中创建表格,例如:

Report <- function(x) {
  list(sprintf("Details of %s", names(x)),
    sprintf("Columns: %d", ncol(x)),
    sprintf("Rows: %d", nrow(x)),
    head(x),
    tail(x))
}

lapply(list_of_df, Report)

,并使用CSS调整宽度,请添加以下内容:

<table>
    <thead>
        <tr>
            <td>Header</td>
            <td class="smallCell">Small Fit</td>
            <td>Header</td>
        </tr>
    </thead>