-5

I have attached an image, i want to display the full text next to image. But in the picture you can see that some text is below the image.

enter image description here

Carl Binalla
  • 5,393
  • 5
  • 27
  • 46

2 Answers2

0
<div class="image-grid"><img src=""/></div>
<div class="content-grid">Content Goes Here</div>

css 
.image-grid{float:left;width:40%;}
.content-grid{float:left;width:60%;}

it will work for you

Gurmatpal
  • 134
  • 8
0

Try this

<div class ="row">
  <div style="width: 50%; float:left">
     <img src ="/yourimagepath/image.jpg">
  </div>

  <div style="width: 50%; float:right">
     //Your content type here
  </div>
</div>
Alsamil Mehboob
  • 384
  • 2
  • 6
  • 24