How to center a div horizontally_html/css_WEB-ITnose
Jun 24, 2016 am 11:40 AM
How to center a div horizontally:
Having the entire div horizontally centered is used quite frequently. For example, generally the web page is centered horizontally in the browser.
Code example:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.51texiao.cn/" /><title>蚂蚁部落</title><style type="text/css"> .mytest{ width:200px; height:200px; border:1px solid red; margin:0px auto; } </style> </head> <body> <div class="mytest">蚂蚁部落</div> </body> </html>
The above code achieves the effect of horizontally centering the div. This effect can be achieved by adding margin:0px auto to the object. Finally, I would like to add that if the div does not have a width value set, margin:0px auto is invalid.
The original address is: http://www.51texiao.cn/div_cssjiaocheng/2015/0519/1896.html
The most original address is: http://www.softwhy.com/ forum.php?mod=viewthread&tid=4704

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?

How do I use HTML5 form validation attributes to validate user input?

How to efficiently add stroke effects to PNG images on web pages?

What are the best practices for cross-browser compatibility in HTML5?

What is the purpose of the <meter> element?

What is the purpose of the <datalist> element?

What is the purpose of the <iframe> tag? What are the security considerations when using it?

How do I use the HTML5 <time> element to represent dates and times semantically?
