How to align and float images in div on website

Hello,
I am using Bootstrap 3 css

How can I do it horizontally with the picture on the right or left and the text in the opposite direction
Div height should be adjusted automatically according to the height of the picture.

Picture falls outside the div box

<div class="well">Text text
        <img src="https://www.w3schools.com/bootstrap/cinqueterre.jpg" style="padding-left: 20px; padding-bottom: 20px;" align="right">
        </div>
        <br /><br />
        <div class="well">Text text
        <img src="https://www.w3schools.com/bootstrap/cinqueterre.jpg" style="padding-left: 20px; padding-bottom: 20px;" align="left">
        </div>
        <br /><br />
        <div class="well">Text text
        <img src="https://www.w3schools.com/bootstrap/cinqueterre.jpg" style="padding-left: 20px; padding-bottom: 20px;" align="right">
        </div>

I want it to be like this


6-600x119

1-1-600x104

I fixed the problem as below
To give space to the edges of the picture
padding? margin? should i use

<div class="well" style="overflow: auto;">Text text
        <img style="float: right;" src="https://www.w3schools.com/bootstrap/cinqueterre.jpg" style="padding-left: 20px; padding-bottom: 20px;" align="right">
        </div>
        <br /><br />
<div class="well" style="overflow: auto;">Text text
        <img style="float: left;" src="https://www.w3schools.com/bootstrap/cinqueterre.jpg" style="padding-left: 20px; padding-bottom: 20px;" align="left">
        </div>
        <br /><br />
<div class="well" style="overflow: auto;">Text text
        <img style="float: right;" src="https://www.w3schools.com/bootstrap/cinqueterre.jpg" style="padding-left: 20px; padding-bottom: 20px;" align="right">
        </div>
Sponsor our Newsletter | Privacy Policy | Terms of Service