HTML seems double-spaced

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

When edit a page in page-layout, if you hit the <ENTER> button it always
seems double spaced. If I want the controls/text to be closer together do I
have to make them rows of a table and size them closer? Is this the only
way?
 
In the VS.Net IDE, hitting the ENTER key creates a <p> (paragraph) tag. For
single spacing, use a <br> tag. In the VS.Net IDE, this can be done in
Design View by using SHIFT|ENTER.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Hi,
When edit a page in page-layout, if you hit the <ENTER> button it always
seems double spaced. If I want the controls/text to be closer together do I
have to make them rows of a table and size them closer? Is this the only
way?

<ENTER> inserts a <P> tag. What you need is a <BR> tag that can be inserted
by pressing <SHIFT><ENTER>.

Steven

- - -
 
And you, sir, are very kind!

You're welcome!

--
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top