Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VelinGeorgiev/07e91fb532817ca755f8bd5b086283b7 to your computer and use it in GitHub Desktop.
Save VelinGeorgiev/07e91fb532817ca755f8bd5b086283b7 to your computer and use it in GitHub Desktop.
Add css styles to your SharePoint list field using the column formatter functionality
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"children": [
{
"elmType": "span",
"txtContent": "@currentField",
"style": {
"padding-left": "8px",
"white-space": "nowrap",
"font-size": "8em"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment