So basically I want the users of my website to be unable to reduce the zoom level below a certain point, at all times. The reason to do that is to avoid them to see some pitfalls of my frontend design. Basically I wanted a skewed container abd, in order to do so, I used CSS property transform: "skewY()" to make four divs placed at a certain angle around a rectangular and horizontal "main" div container. The main one contains the horizontal letters and the corresponding background colour and the other ones just give the skewed component. This way the squared central div would appear as if it was at a certain angle, like this:.
However, when the zoom level is set below 67%, imperfections arise and users can see the "horizontal div" and two divs that circle it. It just looks ugly at the sizes. Even though I tried my best by setting CSS properties such like position relative, z-index, padding, etc.. I couldn't manage to make it perfect, and obviously, I would try to hide the imperfections (since hiding them will not be affecting the overall performance of the website):
How could I just AVOID zoom level to be set below a certain percentage to avoid the imperfections to be seen by anyone in any device? Is there a more elegant way to make the "skewed" containers than using accessory divs?