In my website I am trying to use position:stick for a table row (<tr> element). But it did not work, I read possible causes but none of them is valid for me.
My website is my web page and problematic table row is
<tr class="StickyMenuBar" id="MainMenuBar">
<!-- MENU ROW -->
<td class="MenuTag" id="menuBar">
...
and corresponding css code is :
.StickyMenuBar {
position: -webkit-sticky;
position : sticky;
top : 0px;
}
Thanks.