Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
<!DOCTYPE html> <html> <head> <style> div.hc { width: 300px; margin: 0 auto; } </style> </head> <body> <div> <div class="hc">Horizontally center a div within another div</div> </div> </body> </html>
<!DOCTYPE html> <html> <head> <style> div.ohc { text-align: center; } div.ihc { display: inline-block; } </style> </head> <body> <div class="ohc"> <div class="ihc">Horizontally center a div within another div</div> </div> </body> </html>