html - Cannot put image inside div -


i trying put profile image next names, won't go next text, instead go below div containing text. i'm not sure if i'm being blind, can't find how fix it.

to clarify, i'm attempting put images on page next text (the white next 'main, wolf next 'joe' , kenny next 'kenny').

edit: found stupidly easy solution. flagged deletion!

i think can you:

<div style="display:inline-block;float:left;">    <img alt="" src="" width="50" />                          text here </div> 

also if want text in center put text in <div> element this:

<div style="display:inline-block;float:left;">    <img alt="" src="" width="50"/> </div> <div>    text here </div> 

Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -