Size & Position
Size
Specify minimum, maximum, or specifically set heights and widths for the element.


Property | Description |
---|---|
auto | The default setting that is calculated based on what other elements, if any, are inside the element. |
pt | Explicitly set an exact height/width. |
percentage | Set the height/width as a percentage of the height/width of the parent element. |
Position
Determines how a child element is placed in its parent container.


Property | Description |
---|---|
Relative | Positions the element relative to the other elements in the parent container. |
Absolute | Takes the element out of the flow of all other elements in the child container. The |
Z-index | Determines the level of the element. The higher the Z-Index, the higher priority the element will have in regards to stacking. |
Overflow | Determines the behavior of remaining content that goes beyond the bounds of the container. |
Additional Resources
Updated 4 months ago