in HTML if I write <td></td> it is an empty column. how can I specify how much space it will take? I want an empty column like that to take more space than its default..the goal is I want to have two text boxes in the same row of my page like this:
TextBox1 somespace TextBox2 and for “somespace” I thought maybe I can use that <td></td> but it does not have enough spacing…so if you also have a better idea for how I can reach my main goal that would be cool.
thanks.
in HTML if I write <td></td> it is an empty column. how can I
Share
Use a CSS style:
Though, on reading your question it seems I would have to encourage you not to implement this to achieve what you desire. Instead, style the textbox controls to use a margin:
There is the possibility of separating space-wise using non-breaking white-space (
), but I would discourage this, too, as it would be being used in the mark-up structure as a means of layout and design, when this should be dictated by abstracted styling.