Skip to main content

Wanting a column to fit the full text without wrapping

<style>/* Applies to all rows in the table: header, body, and footer */
.table td:nth-child(2),
.table th:nth-child(2) {
  white-space: nowrap;
  width: 1px;
}

/* Let column 3 wrap normally */
.table td:nth-child(3),
.table th:nth-child(3) {
  white-space: normal;
  width: auto;
}

.transparency-report td:nth-child(1),
.transparency-report th:nth-child(1) {
  white-space: nowrap;
  width: 1px;
}

.transparency-report td:nth-child(3),
.transparency-report th:nth-child(3) {
  white-space: normal;
  width: auto;
}

</style>