CSS布局——链接文字水平居中垂直居中

    科技2022-08-17  106

     Html代码

    <div class="div1"> <a>11111111</a> </div>

    CSS代码

    .div1{ margin-top: 25vh; margin-left: 25vw; width: 800px; height: 600px; background-color: antiquewhite; } .div1 a{ display: block; width: 200px; height: 80px; background-color: aqua; display: flex; justify-content: center; align-items: center; }

    图片效果:

      重点:

    display: flex; justify-content: center; align-items: center;

     

    Processed: 0.008, SQL: 10