Border style do not work with sticky position element

后端 未结 11 2295
攒了一身酷
攒了一身酷 2020-12-01 13:41

I don\'t know why my border style do not work with position: sticky; attribute. I would like to set border styles on my sticky table header. But I don\'t want t

11条回答
  •  天命终不由人
    2020-12-01 13:57

    Use ::after pseudo selector to emulate, lets say, right border

    Example:

    th::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      border-right: 1px solid #e7e7e7;
    }
    
    
    

提交回复
热议问题