I'm trying to center the div{class="informationbox"} so that the div's inside will always be centered in the page, No matter how many divs there is inside.
.informationbox{
left: 0;
right: 0;
margin: 0 auto;
display:block;
position: absolute;
}
<div class="informationbox">
<div style="display: inline-block;">
<img src="https://c1.staticflickr.com/1/342/19541848580_7f925817c9_b.jpg" />
<p>Something</p>
<p>Wall of Text</p>
</div>
<div style="display: inline-block;">
<img src="https://c1.staticflickr.com/1/342/19541848580_7f925817c9_b.jpg" />
<p>Something</p>
<p>Wall of Text</p>
</div>
<div style="display: inline-block;">
<img src="https://c1.staticflickr.com/1/342/19541848580_7f925817c9_b.jpg" />
<p>Something</p>
<p>Wall of Text</p>
</div>
</div>