[HTML-CSS] box-sizing css can cause table frames to misalign
Originally from StackExchange.
If the CSS sets box-sizing: border-box
, then HTML-CSS table frames will be too small. Using
.MathJax span {
box-sizing: content-box;
}
should resolve the issue.