float:left и выравнивание по центру.

bobo

Новичок
Добрый день, есть простой код:
PHP:
<div style="width:auto; height:150px; margin:0 auto;">
    <?php
        for ($x = 0; $x < count($arraypath); $x++) {
	?>
	    <div style="width:100px; height:102px; margin:28px 10px 0 0; float:left;">
                      <img src="<?php echo $arraypath[$x]; ?>" title="" alt="" style="width:100px; height:102px; cursor:pointer;" onclick="chadphoto(this);" />
                  </div>
              <?php	
        }
    ?>
</div>
Как сделать, что б картинки, вне зависимости от их кол-ва, были всегда по центру div'а ? В данном примере они все прижаты к левому краю.
 

ar4temkin

Новичок
PHP:
<div style="width:700px; text-align:center">
    <?php
        for ($x = 0; $x < count($arraypath); $x++) {
    ?>
        <div style="width:100px; height:102px; margin:28px 10px 0 0; display:inline-block; text-align:left">
                      <img src="<?php echo $arraypath[$x]; ?>" title="" alt="" style="width:100px; height:102px; cursor:pointer;" onclick="chadphoto(this);" />
         </div>
              <?php    
        }
    ?>
</div>
что такое
 
Сверху