I
I
Ilya Bobkov2015-10-09 14:50:57
JavaScript
Ilya Bobkov, 2015-10-09 14:50:57

How to insert a row into a table?

Hey! There is a table in it there is the last line (footer) of the total type . Question. How are rows added to the table so that the footer of the table (total) remains at the very bottom?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
C
Cat Anton, 2015-10-09
@heksen

<table>
    <thead>...</thead>
    <tbody><!-- Добавляйте строки только внутрь tbody --></tbody>
    <tfoot><!-- Подвал таблицы всегда будет внизу --></tfoot>
</table>

display: table-footer-group is used to store one or more rows of cells that appear at the very bottom of the table. Its action is similar to the work of the <tfoot> tag

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question