居中

作者: 小北呀_ | 来源:发表于2020-09-25 20:22 被阅读0次
    <template>
      <div>
        <div class="center">
          <div class="centerBox">
            <!-- 缺点:当内容宽度大于centerBox宽度的50%时就会折行 -->
            <div class="centerCont centerIcon">+</div>
            <div class="centerCont">上传图片</div>
          </div>
        </div>
      </div>
    </template>
    <style scoped>
    .center{
      width: 400px;
      height: 40px;
      line-height: 40px;
      border: 1px solid pink;
      position: relative;
    }
    .centerBox{
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%,-50%);
    }
    .centerCont{
      float: left;
    }
    .centerIcon{
      width: 24px;
      height: 24px;
      line-height: 24px;
      text-align: center;
      border-radius: 50%;
      border: 1px solid rgba(74,144,226,.5);
      font-size: 22px;
      color: #4A90E2;
      margin-top: 7px;
      margin-right: 8px;
    }
    </style>
    
    
    

    如下图:


    微信图片_20200925202215.png

    相关文章

      网友评论

          本文标题:居中

          本文链接:https://www.haomeiwen.com/subject/ldfquktx.html