@getöteter_ork:
Die boxen, die bei rpg-maker.com untereinander sind, ändern ja auch nicht ihren abstand zueinander. Nur die einzelnen spalten tun das. Also brauch man sowas, wie das hier:
HTML-Code:
<html>
<body>

<div style="width: 100%; height: 100%; padding-top: 10px; padding-left: 10px;">
	<div style="width: 50%; float: left;">
		<div style="width: 100px; height: 100px; position: relative; margin-top: 10%;">T E S T</div>
		<div style="width: 100px; height: 100px; position: relative; margin-top: 10%;">Noch ein Test!</div>
		<div style="width: 100px; height: 100px; position: relative; margin-top: 10%;">BLUB!!!</div>
	</div>
	<div style="width: 50%;">
		<div style="width: 100px; height: 100px; margin-top: 10%;">T E S T</div>
		<div style="width: 100px; height: 100px; margin-top: 10%;">Noch ein Test!</div>
		<div style="width: 100px; height: 100px; margin-top: 10%;">BLUB!!!</div>
	</div>
</div>

</body>
</html>
Hab mich vielleicht etwas falsch ausgedrückt. Jedenfalls wird das nicht mit phph gemacht, sondern ganz einfach mit CSS und prozentualen angaben.