• Hello,

    I am trying to accomplish something very simple like this:

    Tel: 222.222.2222
    Fax: 333.333.3333
    Email: myname@email.com

    However, if I write it like this

    Tel: 222.222.2222
    Fax: 333.333.3333
    Email: myname@email.com

    The result is like this (all in the same line):

    Tel: 222.222.2222 Fax: 333.333.3333 Email: myname@email.com

    If I write it like this (leaving a line in between):

    Tel: 222.222.2222
    
    Fax: 333.333.3333
    
    Email: myname@email.com

    the result is like this (with line spaces between lines):

    Tel: 222.222.2222

    Fax: 333.333.3333

    Email: myname@email.com

    How do I need to write it to accomplish just this (without spaces between lines)??

    Tel: 222.222.2222
    Fax: 333.333.3333
    Email: myname@email.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter mako2

    (@mako2)

    I have already tried like this and it doesn’t work either

    Tel: 222.222.2222
    <br>
    Fax: 333.333.3333
    <br>
    Email: myname@email.com

    Unless you provide a link to a page demonstrating the problem, no one will be able to offer much in the way of assistance.

    Thread Starter mako2

    (@mako2)

    Here’s a link to a sample page https://bit.ly/vcwXpM

    In the first example, you are not incorporating any line breaks. In the second, you have each line in its own paragraph tag.

    Line 1<br />
    Line2<br />
    Line 3

    should work just fine.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Problem with spaces between lines’ is closed to new replies.