首页 > 解决方案 > 如何使图形向右对齐

问题描述

我想将一个图形元素向右对齐,我尝试了浮动并且它工作但我无法清除浮动所以还有其他方法吗?

<figure>
  <img src="https://images.unsplash.com/photo-1596070779006-15d9c5ff73d7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" alt="">
</figure>

标签: htmlcss

解决方案


figure {
  display: flex;
  justify-content: flex-end;
}

推荐阅读