'Odoo QWeb Put Div in Right Place

I have a simple div

<div>
    <span>My City, 25 Jan 2022</span><br/>
    <span>My Company, Bla Bla Bla</span><br/>
    <br/>
    <br/>
    <br/>
    <strong><center>My Name</center></strong>
</div>

I want to place that div in the right place of the page, how can I do that?



Solution 1:[1]

Just use a row and text-right class.

<div class="row">
    <div class="col-md text-md-right">
        <span class="text-right">Some text</span>
    </div>
</div>

I hope this answer could be helpful for you.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Juan Salcedo