visiblity:hidden of table-cell hides background-color of parent table-row

前端 未结 5 1273
南笙
南笙 2021-01-18 10:13

I have some forms that are structured using display:table-row and display: table-cell. On Firefox 52, I could hide a cell element using visib

5条回答
  •  轮回少年
    2021-01-18 10:40

    Add font-size: 0 option for hidden div.

    #tableRow{
      display: table-row;
      background-color: #e5e8ec;
    }
    .cell{
      display:table-cell;
    }
    #hide,
    #hide>* {
      font-size: 0;
      border: 0;
      outline: 0;
      margin: 0;
      padding: 0;
      height: 0;
      background: transparent;
      width: 75px
    }

提交回复
热议问题