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).
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
Post a Comment