Embarking on my web development journey.
Currently working with a CSS snippet that looks like this:
height: calc(100vh - 46px);
This code is effective across most browsers, but for Mozilla,
height: -moz-calc(100vh -46px );
It seems to work. However, I'm facing an issue where one overrides the other in different browsers. How can I ensure consistency across all browsers?
Any suggestions on resolving this issue would be greatly appreciated.