html - aligning image and text to center together and fold -
how center 2 items, image , text together, , have text fold below when re-sized?
the scenario small easy enough, having hard time centering text vertically on image inline while centering full width of text+image horizontally.
try ..
<div class="col-md-6"> <img src="http://placehold.it/200x200" class="cover"> <span class="caption">lorem ipsum dolor sit amet, consectetur adipisicing</span> </div>
in css,
.cover{ vertical-align:middle; } @media (max-width:1200px) { .cover{ display: block; margin: 0px auto; } .caption { text-align: center; display: block; } }
hope useful you.
Comments
Post a Comment