Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
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();