HTML
<div class="wrapper">
<div class ="content">
<div id="container">
</div>
</div>
</div>
CSS
.wrapper {
width: 1000px;
}
.content {
width: 100%;
text-align: center;
}
#container {
display: flex;
margin-left: auto;
margin-right: auto;
}
Output: https://gyazo.com/c36c7049e68c46ea617391b5dd93b81f
I'm importing data from an XML file and trying to centre the data within the content div but, the images keep going over the page and I have no clue why. Any help or research links would be appreciated, cheers.