css center item with max width code example
Example 1: justify center wont wotk with max-width css
margin-left: auto;
margin-right: auto;
Example 2: after certain width how make ontent center and add margin auto both side
body {
max-width: 1080px;
margin: 0 auto !important;
float: none !important;
}