Contact: aviboots(AT)netvision.net.il
41,593 questions
54,234 answers
573 users
<!-- HTML --> <!DOCTYPE html> <html> <body> <div id="divid">Horizontally center this element</div> </body> </html>
/* CSS */ #divid { display: table; margin: 0 auto; border: 1px solid green; }
<!-- HTML --> <!DOCTYPE html> <html> <body> <div id="divid"> <p>Horizontally center div element</p> </div> </body> </html>
/* CSS */ #divid { margin: auto; width: 50%; border: 1px solid green; padding: 10px; }