Html – Centre a fixed-width variable-height div horizontally so it overflows its parent
Consider this HTML: <body style="max-width: 50px; border: 1px solid black; margin: 0 auto;"> <p>This is some text</p> <div style="width: 100px; background: yellow"> <p>Some wider content</p> </div> <p>Some more narrow text</p> </body> I want to centre the yellow box so that…