Is there any method to set the max height of td ce...
# advancedpdf
b
Is there any method to set the max height of td cell in pdf template please?
j
create a table that contains just that td cell and set the height property of the table style?
b
but if we have longer content, the td gets bigger
j
overflow style property?
b
it didn't work
i set it hidden
j
hmm...hidden should clip the extra text. Is your position absolute or relative?
b
should be relative as there is no extra setting
j
not sure what you mean. you could try setting it to absolute and see what that does. E.g.
Copy code
<table style="position: absolute;overflow: hidden;left: 50pt;top: 52pt;height: 13pt;width: 75pt;"><tr><td> some table data here </td></tr></table>
b
with position relative, no option?
@James Morris I used position absolute but still overflow doesn't work
content overlaps below table position