1. 让文本在div内居中

  • line-height 等于父元素高度
  • text-align: center; 水平居中

image.png

2. table自动居中

  1. <body>
  2. <table class="parent">
  3. <tr>
  4. <td class="child">
  5. 一串文字一串文字一串文字一串文字
  6. </td>
  7. </tr>
  8. </table>
  9. </body>
  1. .parent{
  2. border: 1px solid red;
  3. height: 600px;
  4. }
  5. .child{
  6. border: 1px solid green;
  7. /* 默认是vertical-align: center; */
  8. }

3. 用div伪装table

  1. <div class="table">
  2. <div class="td">
  3. <div class="child">
  4. 一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字
  5. </div>
  6. </div>
  7. </div>
  1. div.table{
  2. display: table;
  3. border: 1px solid red;
  4. height: 600px;
  5. }
  6. div.tr{
  7. display: table-row;
  8. border: 1px solid green;
  9. }
  10. div.td{
  11. display: table-cell;
  12. border: 1px solid blue;
  13. vertical-align: middle;
  14. }
  15. .child{
  16. border: 10px solid black;
  17. }

4. 绝对定位 margin-top和margin-left分别-自身height和width的一半

  1. <body>
  2. <div class="parent">
  3. <div class="child">
  4. 一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字一串文字
  5. </div>
  6. </div>
  7. </body>
  1. .child{
  2. border: 1px solid green;
  3. width: 300px;
  4. position: absolute;
  5. top: 50%;
  6. left: 50%;
  7. margin-left: -150px;
  8. height: 100px;
  9. margin-top: -50px;
  10. }

注意: 如果margin-left: -50%; 是父元素的50%,不是自身

5. 绝对定位,transform: translate(-50%, -50%)

  1. .parent{
  2. height: 600px;
  3. border: 1px solid red;
  4. position: relative;
  5. }
  6. .child{
  7. border: 1px solid green;
  8. position: absolute;
  9. top: 50%;
  10. left: 50%;
  11. transform: translate(-50%,-50%);
  12. }

6. 绝对定位,margin: auto

  1. .parent{
  2. height: 600px;
  3. border: 1px solid red;
  4. position: relative;
  5. }
  6. .child{
  7. border: 1px solid green;
  8. position: absolute;
  9. width: 300px;
  10. height: 200px;
  11. margin: auto;
  12. top: 0;
  13. bottom: 0;
  14. left: 0;
  15. right: 0;
  16. }

7. flex布局

  1. .parent{
  2. height: 600px;
  3. border: 3px solid red;
  4. display: flex;
  5. justify-content: center;
  6. align-items: center;
  7. }
  8. .child{
  9. border: 3px solid green;
  10. width: 300px;
  11. }

8. flex布局+margin:auto

  1. .papa {
  2. border: 1px solid black;
  3. height: 200px;
  4. width: 200px;
  5. display: flex;
  6. }
  7. .child {
  8. border: 1px solid red;
  9. padding: 10px;
  10. margin: auto;
  11. }