I have this example code:
<div style= "border : solid 2px #bebdbf;
margin: auto;
margin-top: 400px;
background : #ffffff;
color : #000000;
padding : 4px;
width : 200px;
height : 250px;
overflow : auto;">
<?php
foreach ($prueba as $pruebas) {
print_r("$pruebas <br>");
}?>
</div>
<div style= "border : solid 2px #bebdbf;
background : #ffffff;
margin: auto;
color : #000000;
padding : 4px;
width : 200px;
height : 250px;
overflow : auto;">
1<br />
2<br />
3<br />
4<br />
5<br />
6<br />
7<br />
8<br />
9<br />
10<br />
</div>
and I got this:
What I want is that the two divs being next to each other and not one in the top of other.