html讓div居中的方法:1、加上「bacbf9e1ad7f40415ce1670e31edfee3內容adca8a5fa06ffeafb062c2e3f274b930」標籤讓div居中;2、在div中加入「margin:0 auto屬性;」自動調節居中。
本文操作環境:windows7系統、HTML5&&CSS3版、Dell G3電腦。
DIV居中提供兩個方法:
1、簡單快速方法就是加bacbf9e1ad7f40415ce1670e31edfee3內容adca8a5fa06ffeafb062c2e3f274b930標籤。
範例:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>center居中</title> </head> <body> <center> <div>我要居中啦</div> </center> </body> </html>
2、div中加入margin:0 auto屬性;自動調節居中。
範例2:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>margin居中</title> <style type="text/css"> .d1{ border:1px solid red; width:200px; height:200px; text-align:center; line-height:40px; margin:0 auto; } </style> </head> <body> <div class="d1"> 我是div,我居中啦... </div> </body> </html>
以上是html怎樣讓div居中的詳細內容。更多資訊請關注PHP中文網其他相關文章!