让div box居中 flex

<div class="panel-body justify-content-between d-flex">
        <div *ngIf="qrString">
          <qrcode [qrdata]="qrString" [size]="150" [level]="'M'" [attr.title]="''"></qrcode>
        </div> 
      </div>

 让div平均分布

 

.justify-content-between{
    justify-content: space-between !important;
}
.d-flex{
    display: flex !important;
}

 

posted @ 2020-11-24 13:34  jahoon  阅读(84)  评论(0)    收藏  举报