react2angular icon indicating copy to clipboard operation
react2angular copied to clipboard

Doesnt work correct in table

Open antwaing opened this issue 6 years ago • 1 comments

When i try to use one of the components inside of a table element it always renders the component just above the table when it renders. Not where I put the element. It does not matter the component content. For example...

table <react_component></react_component> table

Turns into <react_component></react_component> table table`

antwaing avatar Aug 08 '19 13:08 antwaing

This is not react2angular. This is the browser moving a none table element outside of the table.

You should only be rendering table elements within a table.

A work around is to use div's with a display value of table, table-row and table-cell etc.

https://www.dummies.com/web-design-development/css3/using-the-div-tag-to-create-tables/

anthwinter avatar Sep 12 '19 07:09 anthwinter