I want to make the width independent of the footer.
For Mozilla, I want to use the -moz-available value, and when the user uses Opera, CSS should get the values ββfrom -webkit-fill-available .
How to do it in CSS3?
I tried to do something like this:
width: -moz-available, -webkit-fill-available;
This will not give the desired results.
css css3 responsive-design
Julian
source share