如何使用 CSS 更改图标/表情符号的位置?

问题描述 投票:0回答:1

我正在尝试将

/ar
页脚中的图标移动到文本的前面。 这是网址和屏幕截图:

http://qarawa-sweets.com/ar/

想要的结果的图片描述 https://i.stack.imgur.com/RMDwn.png

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.

css icons emoji text-align
1个回答
0
投票

我想通了,我将 (direction: ltr;) 添加到我的 HTML 代码中并且它起作用了。 这也可以作为 CSS 添加,以防您无法编辑 HTML

© www.soinside.com 2019 - 2024. All rights reserved.