我遇到浮动 property.Both 元素向右浮动的问题

I am having a problem with the floating property.Both elements are floated right

我想获得 Svg 按钮左侧的图书修复按钮。
button{ float:right; background-color: #155FCC; padding: 10px 25px; color:white; border-radius:20px; box-shadow: none; border: none; } svg{ float: right; clear:right; height:55px; width:55px; }

This is the type of output that i am looking for.

颠倒HTML中元素的顺序。

svg{ float: right; clear:right; height:55px; width:55px; }
button{ float:right; background-color: #155FCC; padding: 10px 25px; color:white; border-radius:20px; box-shadow: none; border: none; }