Search code examples
htmlcsscellcss-tables

How to add table cells independent from other cells?


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

http://jsfiddle.net/gzC4e/`

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;
}`

Solution

  • change .enalt to position:absolute;

    Fiddle:

    http://jsfiddle.net/gzC4e/1/

    Comment if you need more help.