I have a table with dynamic rows. When I add new row appears delete button. I use
table-layout
table table-layout:fixed; width:100%
width:5%
table-layout
table-layout
table-layout
If the question is about the style of the last column containing the delete button, I may suggest you to add in your css:
table, tr, td:nth-child(-1) {
width: auto;
border:none;
margin: 1px;
}
The updated plunker