:: Documentation >> Tutorial >> Grid >>

Changing the font, background and borders of the grid.

You can modify visual parameters of the grid using .active-controls-grid CSS selector.

<style>
  .active-controls-grid {
      color: blue;
      background: buttonface;
      font-size: 8pt;
      font-family: monospace;
      border: 3px double black;
  }
</style>

Here is the javascript way of doing the same:

Back to Visual Style