Reply
line spacing
Old 08-07-2004, 08:58 PM line spacing
pipers dragon's Avatar
Extreme Talker

Posts: 190
how do I make the lines margined, so that there is a little space in between the lines?
pipers dragon is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
Old 08-07-2004, 09:04 PM
samson's Avatar
Registered User

Posts: 107
Location: Victoria, BC
<font style="margin-bottom: 2px;">
stuff<br>
stuff<br>
stuff<br>
stuff<br>
stuff<br>
</font>
samson is offline
Reply With Quote
View Public Profile Visit samson's homepage!
 
Old 08-07-2004, 09:05 PM
Unknown.

Posts: 1,693
If you mean the line spacing...

You would do this using CSS...

You need to add the style to the 'p' tag...

Example...

HTML Code:
<p style="line-height:100%; margin-top:0; margin-bottom:0;">Line 1</p>
<p style="line-height:100%; margin-top:0; margin-bottom:0;">Line2</p>
Alternatively add the style into the css and then use a class...

Example...

HTML Code:
<head>
<style type="text/css">
.spacing {
line-height:100%;
margin-top:0;
margin-bottom:0;
}
</style>
</head>
<body>
<p class="spacing">Line 1</p>
<p class="spacing">Line2</p>
</body>
Maybe not the best description but...it should do
Hope this helps

-James
Dark-Skys99 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to line spacing
 

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.11844 seconds with 12 queries