My issue involves two inline spans containing English letters that I need to display in a right-to-left (RTL) direction. Unfortunately, the webpage is not rendering the spans correctly.
Here is the text in the first span:
<span>4 Series Gran Coupe</span>
And the second span has this text: <span>(1)</span>
What I want to achieve is to display them like this:
(1) 4 Series Gran Coupe
However, what is actually happening on the webpage is unclear due to the following image:
https://i.sstatic.net/9y15c.jpg
I am hesitant to use float:right
as it may impact other elements adjacent to these spans.