Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 538 Bytes

advanced-style.md

File metadata and controls

19 lines (17 loc) · 538 Bytes

Advanced Style

Here you can add custom CSS styles that will be added to this node.

Style Type

  • JavaScript - The style is formatted as a JavaScript object.
{
    backgroundColor: 'red',
    boxShadow: '10px 5px 5px red'
}
  • CSS - Regular CSS syntax that will be applied directly to this node only. Classes, selectors and pseudo-classes aren't supported.
background-color: red;
box-shadow: 10px 5px 5px red;

CSS Style
Specify your custom styles in the format specified by the Style Type.