How can I center the output of this? I want is to the products in the boxes are in the center of the main body
#nicebox {
float: left;
/*position: relative;*/
border: 1px solid #fff;
padding: 5px;
margin: 10px;
}
<h3>Popular Products</h3>
<?php
require_once('my_connect.php');
$my_query="select * from products limit 5";
$result= mysqli_query($connection, $my_query);
while ($myrow = mysqli_fetch_array($result)):
$description = $myrow["product_description"];
$price = $myrow["price"];
$image=$myrow["image"];
if($image):
echo "<div id=\"nicebox\"><a href=\"products/$image\" rel=\"lightbox[dp]\" title=\"$description\" alt=\"Hello\"><img src=\"products/$image\" class=\"thumbnail\"></a></div>";
endif;
endwhile;
?>
thanks in advance!