We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/* 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;
The text was updated successfully, but these errors were encountered:
https://gist.github.com/hutch120/99469b8caf661b427f42b7055518e5a4#file-download-js-L59
Sorry, something went wrong.
interface Options { x?: number; y?: number; behavior?: 'smooth'; } export function elementScrollTo(element: Element, { x, y, behavior }: Options) { if (isIE()) { if (x != null) { element.scrollLeft = x; } if (y != null) { element.scrollTop = y; } return; } element.scrollTo({ left: x, top: y, behavior }); }
No branches or pull requests
1. Table border-collapse issue
The text was updated successfully, but these errors were encountered: