css - Is it possible to have a table with in a <td> but not constricted to that td's width -
i want table inside <td>
, don't want resize <td>
. want on flow next <td>
on right not not resize parent <td>
.
i'm putting inside <td>
move when screen resized.
try css code on nested table:
position: absolute; top: 0; left: 0;
the parent td should have:
position: relative;
but again, playing tables not recommended... may need nest table in div because positionning tables , td tricky.
Comments
Post a Comment