CSS Content
CSS custom content will allow you to further personalize your interactive project, and pre-configure common requirements for CSS Style Sheets including responsive media queries.
(Image above may not reflect actual Environment Options)
IMPORTANT: You MUST
enable Customize with Export Kit Pro to edit Environment Options.
body {}
This will allow you to define the global body
style. By default this value is set to:
1 | body { margin: 0px; padding: 0px; font-family:"Arial" } |
img {}
This will allow you to define the global img
style. By default this value is set to:
1 | img { position: absolute; display: block; margin: 0px; border: none; padding: 0px; } |
div {}
This will allow you to define the global div
style. By default this value is set to:
1 | div { position: absolute; } |
CAUTION: If you change this value, this can cause unexpecteddisplay errors
. Consider using Relative Positions to convert folders usingposition:relative;
instead.
Custom CSS
This is your personal custom content of the style sheet.