Can someone help me understand how the position absolute attribute on a view component works.
My goal is to make the view sit over other elements on the page. By default the position is relative, but according the docs it should allow absolute. But it’s not.
const resultBlock = root.createComponent(
View,
{
display: 'block',
id: 'viewresult',
position: "absolute",
zIndex: 10000
}
);
Ideally I want that element to overlay others on the page (and shift it down 4px).
Thanks in advance for any pointers you have.
Greg
