0

Had A dynamic table with data and want to fixed header at vertical scrolling and fixed column at horizontal scrolling.

Plz Help Me.

Amit Agarwal
  • 61
  • 1
  • 9
  • http://stackoverflow.com/questions/673153/html-table-with-fixed-headers?rq=1 – Rajesh Biswas Jan 04 '16 at 10:55
  • @LenilsondeCastro i want to try make a table which contain fixed header, while scrolling more data inserted in table but that time header of table must be fixed. Second things is that first column of table is fixed while horizontal scrolling. i Fixing both issue at same time on single table. please Suggest me....... – Amit Agarwal Jan 05 '16 at 04:58
  • I think you may stop thinking in a table as `
    ` but in a grid system. I mean, you must use something like Twitter Bootstrap Grid System (http://getbootstrap.com/css/#grid).
    – lenilsondc Jan 05 '16 at 10:06

1 Answers1

0

You can fix boxes with css:

.fixed_coloumn {
   position: fixed;
}

Please refer to this example

guysigner
  • 2,822
  • 1
  • 19
  • 23