@MikDra1
Posted
To make your layout truly responsive I advice you to use this technique:
.container {
width: min(1440px, 90%)
}
This ensures that the layout won’t get bigger then 1440px but on smaller screens it will be 90% of the viewport . The min() functions takes the smaller number.
It is the same as:
.container {
width: 90%;
max-width: 1440px;
}
Hope you found this comment helpful ❤️
Good job and keep going 😁😃😉
@robcrock
Posted
@MikDra1 awesome! Thank you. This will be super useful 😁