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