https://blog.csdn.net/qq_31674679/article/details/81502033
水平居中
- 方法一:在父容器上定义固定宽度,margin值设成auto
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>helloworld</title> </head> <style type="text/css"> .div1{ background-color: blue; width: 200px; margin: auto; } .div2{ background-color: orangered; } </style> <body> <div class="div1"> <div class="div2"> 你好啊!!!!!!!!! </div> </div> </body> </html>