Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Stridder44

macrumors 68040
Original poster
Mar 24, 2003
3,973
198
California
How do you make a space in between two lines of text
(space)
like the one above?


The reason I ask is because MySpace doesn't allow for and spaces between Sentences in the profile. Like if I wanted to make something look like this:

"Hi, my name's Kyle.

I love pizza."

It would turn out like this:

"Hi my name's kyle.I love pizza."
 
If you can use raw HTML, you can use the <br> (break) tag to indicate a forced linebreak.

So this:
Code:
How do you make a space in between two lines of text<br>
<br>
like the one above?
comes out like this:
Code:
How do you make a space in between two lines of text

like the one above?
 
To be a bit picky, it's actually
Code:
<br />
in XHTML (but not <p />, cause <br /> is an empty element and <p> is not)

Then again, we're talking about MySpace, and with MySpace, all common sense, good coding standards, and good interaction design goes out the window..
 
janey said:
To be a bit picky, it's actually
Code:
<br />
in XHTML (but not <p />, cause <br /> is an empty element and <p> is not)

Then again, we're talking about MySpace, and with MySpace, all common sense, good coding standards, and good interaction design goes out the window..


lol
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.