Position Type
The position type property determines whether a view should be positioned in-line with its siblings in a stack (position-type: relative), which is the default, or out-of-line and independently of its siblings (position-type: absolute).
The position-type of a view can be specified using the respective layout modifier:
VStack::new(cx, |cx|{
    Label::new(cx, "Hello");
    Label::new(cx, "World");
})
.position_type(PositionType::Absolute);
Or in CSS:
.container {
    position-type: absolute;
}