Reputation: 27
I want to add bottom cells to the table. However, when I add the cells, the upside cells shrink. How do I accomplish to add independently table cells? link is here
here I want to add independent cells but upper cells shrink. I don't want upper side cells to shrink while adding new cells to bottom row.
.enalt
{
display:table-row;
bottom:0;
position:relative;
}`
Upvotes: 0
Views: 94
Reputation: 2861
change .enalt
to position:absolute;
Fiddle:
Comment if you need more help.
Upvotes: 1