一只小呆  

HTML

<section>
    <div>left1</div>
    <div>left2</div>
    <div class="right">left3</div>
</section>

CSS

section {
    display: flex;
}

div {
    width: 100px;
    height: 100px;
    background: antiquewhite;
}

.right {
    margin-left: auto;
}

 

posted on 2021-11-15 09:38  一只小呆子  阅读(113)  评论(0编辑  收藏  举报