Styling 0:27 video
How to remove borders in grid controls
Learn how to remove borders in grid controls with SpreadsheetWeb. Follow focused steps, practical examples, and implementation guidance to complete the task…
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.
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;
}