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

|
HTML Element |
CSS Class |
|---|---|
|
Form |
.skfcn |
|
Form Header |
.skh |
|
Form Footer |
.skf |
|
Form Name |
.sktt |
|
Form Description |
.sktd |
Example
/* Change Form background color to grey. */
.skfcn
{
background-color: grey !important;
}
/* Change Form background color to black except in Form Designer. */
html:not(.skd) .skfcn
{
background-color: black;
}
Note: Suffix your CSS declarations with !important to ensure it takes precedence over normal declarations.