Forum Moderators: open
I have a problem in HTML that for giving space   can be applied but for giving more then the space like giving in winword which tag is used. Please clear my doubt any.
[edited by: encyclo at 9:18 pm (utc) on Nov. 18, 2006]
[edit reason] no email addresses please, see forum charter [/edit]
The old way was to use a single pixel (transparent) gif image and set the width and height on the IMG tag to space elements with pixel precision. This will still work (particularly in older browsers), but it goes against the rules of separating content from presentation, as the two are mixed, and it can make your markup confusing if used too much.
So I think the prefered method these days is to set the margin/padding and/or position:relative (with left: and top: set) in your external CSS file to perhaps space your elements. But the method used will depend on what you are trying to achieve.
To you have a particular example?