2020-07-17 Frontend►CSS CSS - How to make child div wider than parent div By using calcSource 12345678910111213141516171819202122html,.parent { height: 100%; width: 100%; text-align: center; padding: 0; margin: 0;}.parent { width: 50%; max-width: 800px; background: grey; margin: 0 auto; position: relative;}.child-element { position: relative; width: 100vw; left: calc(-50vw + 50%); height: 50px; background: blue;} How do we make a full-browser-width container when we’re inside a limited-width parent?Source 12345678.full-width { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw;} Newer MobX vs Redux Older Cordova overview & plugins