0

我正在尝试复制示例中的表。特别是本节:

<style>
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
</style>

以下是相关代码:

ContainerTag html = html(head(
        title("Title here"),
        style()
    ),body());
4

0 回答 0