You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React Spaces allow you to divide a page or container HTML element into spaces. These spaces know how to behave in relation to each other and can also be divided into further nested spaces.
4
+
5
+
### Top level spaces
6
+
7
+
Used at the top level of all other spaces.
8
+
9
+
**ViewPort**
10
+
11
+
This space will take over the full viewport of the browser window. Resizing the browser window will automatically adjust the size of this space and all the nested spaces.
12
+
13
+
**Fixed**
14
+
15
+
This space can be given a height and optionally a width (by default it will size to 100% of it's container). All nested spaces will be contained within this fixed size space.
16
+
17
+
### Inner spaces
18
+
19
+
These can be used within the top-level spaces **ViewPort** and **Fixed** or nested within other spaces.
20
+
21
+
**Left** / **Right**
22
+
23
+
A space anchored to the left or right of the parent container/space. A size can be specified in pixels to determine its width.
24
+
25
+
**Top** / **Bottom**
26
+
27
+
A space anchored to the top or bottom of the parent container/space. A size can be specified in pixels to determine its height.
28
+
29
+
**Fill**
30
+
31
+
A space which consumes any available area left in the parent container/space taking into account any anchored spaces on every side.
0 commit comments