section should go to the end of the browser window, and not be limited to its content. After that, its content should be in the middle both horizontally and vertically.
HTML code
<section> <div style="text-align: center;"> <div> <div class="admin-block"> <img src="img/admin_gallery.png" alt=""> </div> <div class="admin-block"> <a href="?option=edit_users"><img src="img/admin_users.png" alt=""></a> </div> </div> <div> <div class="admin-block"> <img src="img/admin_michail.png" alt=""> </div> <div class="admin-block"> <a href="?option=edit_statii"><img src="img/admin_statii.png" alt=""></a> </div> </div> <div> <div class="admin-block"> <img src="img/admin_weapon.png" alt=""> </div> <div class="admin-block"> <img src="img/admin_revard.png" alt=""> </div> </div> </div> CSS code
.admin-block { padding: 15px; display: inline-block; } 
