html - Align text with a picture -


i wish align text picture. text cannot go outside borders of picture , should placed under it. have tried putting in containers , divs have not yet succeeded.

on picture see current situation (picture 1) , wanted situation (picture 2).

enter image description here

current code (after changing lot)

<div style="text-align:center">     <a href="testing"><img src="test.jpg" width="800px" height="150px"></a><br/>     <p align="left"> test.  </p>   </div>     <br> 

set width <div> instead of <img> , center margin:auto;:

<div style="text-align:center;width:300px;margin:auto;"> 

see jsfiddle

you can make div display:inline-block; , set text-align:center; containing element:

<div style="text-align:center;">    <div style="text-align:center;width:300px;display:inline-block;"> 

see jsfiddle


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -