tip-archive icon indicating copy to clipboard operation
tip-archive copied to clipboard

Until IE Dead

Open JaeYeopHan opened this issue 3 years ago • 2 comments

1. Table border-collapse issue

/*
  when border-collapse is 'collapse',
  cannot apply border style to th, tr element
  so...
*/

export const tableBorderWhenIE = isIE()
  ? css`
      border-collapse: separate;
      border-spacing: 0;
    `
  : null;

JaeYeopHan avatar Jan 22 '21 15:01 JaeYeopHan