Base Form
- Last UpdatedJun 22, 2023
- 1 minute read
You can change style for HTML elements of Base Form using CSS classes.


|
HTML Element |
CSS Class |
|---|---|
|
Base Form |
.skcn |
|
Base Form Name |
.skbt |
|
Base Form Description |
.skbd |
|
Record Caption |
.skmr |
|
Add Record Row |
.skar |
|
Add Record Icon |
.skab |
|
Delete Record Row |
.skdr |
|
Delete Record Icon (Default) |
.skdb |
|
Delete Record Icon (Grid) |
.skcdo |
|
Base Form Body |
.skcb |
Prefix the Custom Style Identifier of a control with the CSS Class name to apply the style to the specific control. For example:
/* BaseForm1 is the Custom Style Identifier of the Base Form container. */
.BaseForm1_skbt
Example
/* Change font size of Base Form name to 20px. */
/* BaseForm1 is the Custom Style Identifier. */
.BaseForm1_skbt
{
font-size: 20px !important;
}
Note: Suffix your CSS declarations with !important to ensure it takes precedence over normal declarations.