Issue with Absolute Layout

Hi all,
I am getting the following issue while using absolute layout in my application. The contenet never get displayed in the layout.
My style is


.v-absolutelayout-margin {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow: auto !important;
position:inherit
}
.alert_absolute_lay{
overflow: auto;
position:inherit;
}

But when I take the inspect element in my browser , I get


class=“v-absolutelayout-margin” style=“position: relative; overflow: hidden;”


And when I change the overflow to visible , the content get displayed. How to do itt in my scss file???
Any possible solution on this issue?? I am really confused here…

Hello Anil,
probably you have not set the size of the absoluteLayout or set it to undefined. Try to set the size of layout to full, like that
layout.setSizeFull();

Thank you dmitrii rogozin.
That solved my issue…

No problem