Align to the right with rich text

Hi everyone! I’m trying to use rich text to align one part of my text to the right and can’t seem to manage keeping it all in the same row. I’m currently trying this:

@price **<p style="text-align: right">A @distance de ti </p>**

The problem is it’s inserting a line break before p (paragraph)

Does anyone know if it’s possible to do this while keeping it all in the same row?

You could try a ‘div’ tag instead of a ‘p’ tag. Or even an ‘a’.

I would use span:

<p style="text-align:left;">
    This text is left aligned
    <span style="float:right;">
        <b>This text is right aligned
   </b></span>
</p>