css - Create space between float image and text -


Ι want have 5px space between image , description.

enter image description here

i tried margin-left or padding-left doesn't want achieve, creates space begging of container. idea how can that?

#portofolio-element-image{     width: 128px;     height: 128px;     margin-bottom: 5px;     float:left; }  #portofolio-element-description{     color: white;     text-align:justify;     margin-left: 5px; } 

why not use:

#portofolio-element-image{   margin-right:5px; } 

adding margin text have no effect on distance between , floated image, because image falls within text element.


Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -