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.

enter image description here

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

Popular posts from this blog

Java 8 + Maven Javadoc plugin: Error fetching URL -

css - SVG using textPath a symbol not rendering in Firefox -

order - Notification for user in user account opencart -