« June 2004 »
S M T W T F S
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30

You are not logged in. Log in
Open Community
Post to this Blog

Helpful Links
Angelfire Home
Register Your Domain
Angelfire's Twitter
Angelfire's Facebook

Angelfire Club Blog
Need assistance and ideas from fellow Angelfire members to help build and manage your website? You've come to the right place!
To join this Community Blog, you must be an Angelfire member. Just click the "Join this Community" link, and start posting immediately.

Hint: When posting, select a topic that most relates to your question. (News, FrontPage, HTML Questions, etc...) This will help to keep the blog organized for everyone.

View Latest Entries

Wednesday, 9 June 2004
Increasing Line Spacing in .HTML Text
Mood:  down
Now Playing: How Do You Increase Line Spacing?
Topic: HTML Questions
I'm wrinting text but wish to increase the line spacing between each line of text so that it is easier to read. What is the htnl code and where does it get inserted in the page?


Posted by az/swbobcat at 11:56 AM EDT | Post Comment | View Comments (3) | Permalink | Share This Post

Wednesday, 9 June 2004 - 2:04 PM EDT

Name: cw

You can control line height with css but not all browsers will render it or render it properly under all conditions.

You may be better off being selective in your choice of font and specify a larger font size. Sans serif fonts are most readable on the web. Verdana was designed especially for web readability.

Anyone that finds your font too small can always zoom the text from their browser.

Wednesday, 9 June 2004 - 8:36 PM EDT

Name: dalleh

you can add <BR> tag between the lines each <BR> the same as hitting enter

text line here
<BR>
<BR>
text line here
<BR>
<BR>
text line here

Thursday, 10 June 2004 - 9:38 AM EDT

Name: cw

That will sort of work but one problem with using line break code to space text inside a paragraph is that the text won't wrap naturally when viewed under conditions other than it was built.... i.e. different browser, monitor resolution, window size or viewer changes in font or font size, etc. That can cause odd looking text spacing under visitor conditions other than your own.

View Latest Entries