Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tabulator - change font size for entire table

Tags:

tabulator

I would like to be able to increase the font size for an entire tabulator table in version 5.1. I know that I can increase the font size of a column by using a custom formatter, but I have a column with editable text and it does not appear that I can have a custom formatter with editable text.

like image 820
Tom Avatar asked Oct 27 '25 05:10

Tom


1 Answers

Use .tabulator

<style>
  .tabulator {
    font-size: 28px;  // change font size
  }
</style>

JsFiddle

like image 180
Double H Avatar answered Oct 30 '25 15:10

Double H