css - Create space between float image and text -
Ι want have 5px space between image , description.
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
Post a Comment