The issue is that the Template Grid height is fixed by Mendix, and your CSS (especially if it is inline) is not overriding it.
Assign a custom class to the Template Grid (for example, my-template-grid) and add the following CSS:
.my-template-grid,
.my-template-grid .mx-templategrid-content {
height: auto !important;
max-height: none !important;
}
Also, make sure the Scroll behavior property is set to None instead of Auto.
hi,
In Word Document Generation (Docx module), CSS height does not apply to table rows.
Word templates are controlled by Word table properties, not web CSS.
That is why your Template Grid height CSS is not working.
You must configure it inside the Word template (.docx) itself.
Table Layout → Properties → Row tab
Specify height
Do NOT use “At least”.