I want to know what does max-height: calc(( 100vh - 80px) , 560px)
actually do and why we have to add space for -
to make it work
As i tried if -
is without spaces it is not working
I found it is written in css for defining body height like
body{
max-height: calc(( 100vh - 80px) , 560px);
}