Search code examples
htmlcssflexboxtext-align

How to make inline-block align right


I am trying to align an image to the right but haven't been able to do so despite repeated attempts using flex, text-align etc.

I have already looked through many questions but didn't find a satisfactory answer.

img {
        display: inline-block;
        text-align: right;
    }
<h1>
  <img src="burj.jpeg">    
  Enjoy the world of pure travel masti
</h1>


    


Solution

  • Placing h1 image tag after the text would serve the purpose.

    <h1>  
          Enjoy the world of pure travel masti
          <img src="burj.jpeg" alt="Sample Picture">  
     </h1>