width: 100vw;/* Taking up the entire viewport width */
height: 100vh;/* Occupying the full height of the viewport*/
Despite my efforts to make this CSS match the exact dimensions of the viewport at 100%, it seems to be too large and causing overflow on the page.
I have eliminated padding, margin, and outline as possible causes for this issue.
Note: Interestingly, the problem only escalates when I introduce two divs with these specific dimensions. (although this behavior is consistent in jsfiddle)
Is it worth treating this as a bug and coming up with a workaround? Or am I overlooking something crucial?