Box Shadow on table row not appearing on certain browsers

后端 未结 9 1771
夕颜
夕颜 2020-11-27 18:44

CSS box-shadow on table rows - tr - doesn\'t seem to be working consistently across browsers. On some browsers the shadow is displayed; on others, there is no s

9条回答
  •  眼角桃花
    2020-11-27 18:46

    Reasons behind it seem down to default CSS - the display: block was the biggest factor.

    CSS / HTML / Demo

    tr {
      background-color: rgb(165, 182, 229);
      display: block;
      margin-bottom: 5px;
      -moz-box-shadow: 0px 2px 2px black;
      -webkit-box-shadow: 0px 2px 2px black;
      box-shadow: 0px 2px 2px black;
    }
    td,th {
      padding: 5px;
      text-align: left;
    }
      One Two
    Title Three Four
    Title2 Five Six
    Title3 Seven Eight
    Title4 Nine Ten

提交回复
热议问题