Problem of dimension
Problem of dimension
Hello everyone, I have a huge scaling problem. When I apply a scrollY in a table, it works very well: the layout is taken into account with my css. But when I reduced the size of the page, the table, with a width of 100% is not reduced and leaves the page (we must use the horizontal scrollbar to see below the table)
I try several methods (even with a manual overflow) but nothing changes.
I can send bits of code if necessary.
Thank you all for your future answers and sorry for my bad English.
Replies
Try adding
width="100%"
as an attribute to your table. If that doesn't work, please link to a test case showing the issue, as per the forum rules.Allan
Thx Allen i use the scrollY: "calc(100vh - 480px)", for the dimension and it's a good job (i had trying to use width ="100%" but it don't run correctly.