PgBiel / typst-tablex

More powerful and customizable tables in Typst
MIT License
370 stars 12 forks source link

The customize cell after the first row fill color will cover a little of the top line of the cell #66

Closed capvor closed 12 months ago

capvor commented 12 months ago

The customize cell after the first row fill color will cover a little of the top line of the cell.

#tablex(
  columns: 3,
  rows: auto,
  align: center + horizon,
  [1], [2], [3],
  [4], cellx(colspan:2, fill: rgb(82%, 90%, 100%), [5]),
  [7], [8], [9],
)

image

The first row couldn't

#tablex(
  columns: 3,
  rows: auto,
  align: center + horizon,
  [1], [2], cellx(fill: red, [3]),
  [4], cellx(fill: blue, [5]), [6],
  [7], [8], [9],
)

image

PgBiel commented 12 months ago

Duplicate of #4.