The Root Element is the container for your entire presentation. All content is created inside this element. You should use data-* attributes on this element to define the presentation's global properties like target resolution, scaling limits, and transition speed.
Important CSS Note: Because all steps are wrapped in a 0-size div, you must use pixel values (not relative values like width: 100%) for the dimensions of your step elements. These pixel values should correspond to the data-width and data-height you define on the root element.
To target HD screens (the modern default), use the default values or specify them explicitly. To revert to the legacy v1.2.0 resolution (1024x768), you must set the attributes manually.
<div id="impress"
data-transition-duration="1000"
data-width="1024"
data-height="768"
data-max-scale="3"
data-min-scale="0"
data-perspective="1000"
data-autoplay="7">
<!-- Steps go here -->
</div>