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