CSS Position: Sticky; to keep a row /column of a HTML table frozen on a webpage when scrolling.

  • Thread starter Thread starter Shilpa Kumari
  • Start date Start date
S

Shilpa Kumari

Guest
The below CSS property:value pair work for other browsers to keep a row /column of a HTML table frozen on the web page. But this does not work on IE. Is there an alternative way to do this on IE?

  1. position: -webkit-sticky;
  2. position: -moz-sticky;
  3. position: -ms-sticky;
  4. position: -o-sticky;
  5. position: sticky;

Continue reading...
 
Back
Top