Font Awesome 5 - 图标位置的反转

Font Awesome 5 - Inversion of the icon position

请问您知道反转图标位置的解决方案吗?

我找到了解决方案,但是我不了解这些属性。

-webkit-transform: scaleX(-1);
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";

我正在寻找一个简单的解决方案...

.fa{
font-size: 23px;
color: blue;
margin-right: 10px;
-webkit-transform: scaleX(-1);
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">

<div class="subtitle-right"><i class="fa fa-phone"></i>+(11)123 456 7890,</div>

如果你想镜像图标,这应该很简单

transform: scaleX(-1);

一个简单的解决方案是考虑 Font Awesome (https://fontawesome.com/how-to-use/on-the-web/styling/power-transforms)

已经提供的样式

.fa-phone{
  font-size: 23px;
  color: blue;
  margin-right: 10px;
}
<script  src="https://use.fontawesome.com/releases/v5.7.2/js/all.js"></script>

<div class="subtitle-right"><i class="fas fa-phone"></i>+(11)123 456 7890,</div>

<div class="subtitle-right"><i class="fas fa-phone" data-fa-transform="flip-h"></i>+(11)123 456 7890,</div>