Inputs.table header

Hi, I would like to add a line break in some headers. Is it possible ? Thanks

Yes, you can return an HTML element as your custom header and include the line break there, for example:

Inputs.table(penguins, {
  header: {
    species: htl.html`Header<br>for species`
  }
})
1 Like