I have a 3 column layout that should fill the whole screen so on my columns I am using:
width: calc(100% / 3);
So lets say for example my s
Try width: calc(100% * 0.33333); to make sure float rounding errors err on the side of caution or width: calc((100% / 3) - 0.1px);.
width: calc(100% * 0.33333);
width: calc((100% / 3) - 0.1px);