Remove borders in grid controls | SpreadsheetWeb
Styling 0:27 video

How to remove borders in grid controls

One focused task, a quick video, and concise steps you can scan immediately.

To remove borders in grid controls;

  • Open Designer Interface,
  • Go to the ‘Stylesheet’ module.
  • Add a new stylesheet.
  • Enter the CSS rule for removing borders in grid controls.
  • Save the stylesheet by clicking on the “Save” button.
CSS8 lines
table[id$='input'],
table[id$='input'] th,
table[id$='input'] td,
table[id$='output'],
table[id$='output'] th,
table[id$='output'] td {
     border:none !important;
}