我正在尝试将
/ar
页脚中的图标移动到文本的前面。
这是网址和屏幕截图:
HTML代码:
< span style="color: #f45152; font-size: 11pt;" >< i class="fa fa-whatsapp" style="color: green;" > < /i > 00972-598-301-381 < /span >< /p >
这是CSS:
.fa, .fab, .fad, .fal, .far, .fas {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
}
I found this https://stackoverflow.com/questions/74168999/how-to-insert-icon-before-text but I couldn't apply it.
我想通了,我将 (direction: ltr;) 添加到我的 HTML 代码中并且它起作用了。 这也可以作为 CSS 添加,以防您无法编辑 HTML