peterish Posted February 5, 2009 Share Posted February 5, 2009 how do you add empty space to only the left side of an image? (i.e. like hspace but only applying to the left side) HTML only. Link to comment Share on other sites More sharing options...
0 ekw Posted February 5, 2009 Share Posted February 5, 2009 If i recall properly is used for adding spaces gogogo! Link to comment Share on other sites More sharing options...
0 lt8480 Posted February 5, 2009 Share Posted February 5, 2009 if in HTML only you include CSS properties (which can be set using a tag directly within html, look it up if you dont know how, either way I would suggest implementing CSS and not using custom html everywhere) - anyway i suggest messing with margins and padding (easiest to try rather than explain the difference) which you simply set in-order (top right bottom left). Also depending on what you are trying to achieve you may want to apply it to the containing element. padding: 0px 0px 0px 50px; Link to comment Share on other sites More sharing options...
0 JamesCherrill Posted February 5, 2009 Share Posted February 5, 2009 put the pic in the right-hand element of 2-element table with nothing in the left element and no borders? Link to comment Share on other sites More sharing options...
0 tiagosilva29 Posted February 5, 2009 Share Posted February 5, 2009 You should move this question to the Web Client Side section. Link to comment Share on other sites More sharing options...
0 Kami- Posted February 6, 2009 Share Posted February 6, 2009 Use CSS. Link to comment Share on other sites More sharing options...
0 optimaPlus Posted February 6, 2009 Share Posted February 6, 2009 I agree with CSS. It's always simple and safe way to format any of your page. I've never thought about growing in the future, and ended up with managing 1,000+ pages someday.. :x Link to comment Share on other sites More sharing options...
0 Tech God Posted February 7, 2009 Share Posted February 7, 2009 css: margin-left: 100px; Link to comment Share on other sites More sharing options...
Question
peterish
how do you add empty space to only the left side of an image? (i.e. like hspace but only applying to the left side)
HTML only.
Link to comment
Share on other sites
7 answers to this question
Recommended Posts