What’s the difference between width:100% and min-width:100% for body
body{
width:100%
}
and
body{
min-width:100%
}
>Solution :
If you set the width parameter for body, the page size will always be the size of your screen. At the same time if you set min-width parameter for body it will be the same size as your screen but it can increase. This is hard to see, but if we were to change the screen size the difference would be visible.