best way to move some centered text within a div <span> Or <div>
Ihave an image with text below inside a centered Division and want to move them 30px to the right.
What is the best way, both these seem to work. which is best ?
<span STYLE="margin-left: 30px">
<div STYLE="margin-left: 30px">
Re: best way to move some centered text within a div <span> Or <div>
Div is something like the container and span the inline content but of course u can use a container inside another container.
If you are only using the image on left-right basis i would go with a span.If your images floats around a div container then i would go with a div.
Of course anyone can correct me as i'm no expert on html-css.