Setting Right Margin

F

Fred

I'm looking for a straight forward way to set the right margin -- similar
to using <DIR> for the left margin.
 
M

Mark Parnell

Deciding to do something for the good of humanity, Fred
<[email protected]> declared in
alt.html,alt.html.editors.webedit,alt.html.editors:

[f'ups to alt.html, alt.html.editors removed as it doesn't exist on my
server]
I'm looking for a straight forward way to set the right margin

margin-right
 
J

Jukka K. Korpela

Fred said:
I'm looking for a straight forward way to set the right margin --
similar to using <DIR> for the left margin.

Someone still uses <DIR>? Vow! Someone still has faith in this invention
that has long been frowned upon browser vendors and web page authors alike,
abjured and depreciated by the World Wide Web Consortium and other powers,
etc. etc. Most of us mortals have long ago decided - if we ever considered
using <DIR> in the rare cases where we would like to use a directory-like
list of items - to use <UL> together with some rocket-science level CSS such
as ul { list-style-type: none; }.

In that case, try <DIR DIR="RTL">. It may have some side effects, though.

Follow-ups randomized as usual. "The average usefulness of a thread is
inversely
proportional to the cube of the number of groups it is posted to."

Note to newbies: The above message may contain some irony. Here's the boring
part: Don't use <DIR>. Use e.g. <div class="note">...</div> instead (or
attach class="note" to some existing or some more semantic element that you
wish to indent) and use a CSS rule like .note { margin-left: 1em; }. To set
right margin, use margin-right instead of margin-left.
 
F

Fred

I'm looking for a straight forward way to set the right margin -- similar
to using <DIR> for the left margin.
 
M

Mark Parnell

Deciding to do something for the good of humanity, Fred
I'm looking for a straight forward way to set the right margin

The answers haven't changed in the last 2 weeks.
 
F

Fred

Thanks, Jukka!! Unfortunately, I am sub-newbie.... sub-sub-newbie to be
exact...... which translates to .... I don't know what the heck "note" (in
<div class="note">...</div>) means.

Can you give me an example? See how the text in this message is 1/8-inch
never touches the left or right margin? Exactly how do you code a page to
give the same margin?

Your buddy,
Fred
 
F

Fred

Mark Parnell said:
The answers haven't changed in the last 2 weeks.

I know, that's why I'm still asking. Still waiting for someone who
understands the question.
 
N

Neredbojias

To further the education of mankind, "Fred"
Thanks, Jukka!! Unfortunately, I am sub-newbie.... sub-sub-newbie to
be exact...... which translates to .... I don't know what the heck
"note" (in <div class="note">...</div>) means.

....And if you are as incapable of finding out as it seems, you might as
well give up now and save yourself some frustration.
 
J

Jonathan N. Little

Fred said:
Thanks, Jukka!! Unfortunately, I am sub-newbie.... sub-sub-newbie to be
exact...... which translates to .... I don't know what the heck "note" (in
<div class="note">...</div>) means.

Can you give me an example? See how the text in this message is 1/8-inch
never touches the left or right margin? Exactly how do you code a page to
give the same margin?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Your Title</title>

<style type="text/css">
BODY { margin-right: 2em; }
</style>
</head>
<body>
<p>Now the whole document well have a right margin of about 2 'M'
character widths adjust as desired</p>
</body>
</html>
 
C

Chaddy2222

Jonathan said:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Your Title</title>

<style type="text/css">
BODY { margin-right: 2em; }
</style>
</head>
<body>
<p>Now the whole document well have a right margin of about 2 'M'
character widths adjust as desired</p>
</body>
</html>
That looks good.
By the way my new design is now complete, well at the moment it is
anyway, http://freewebdesign.cjb.cc
But, I will say though that setting margens and padding seams to be one
of the harder things to get right, both in CSS and web design
generally.
Oh on the subject of padding, to the op, you may need to set that as
well.
Depends on the look that you are going for though.
 
F

Fred

I'm looking for a straight forward way to set the right margin -- similar
to using <DIR> for the left margin.
 
F

Fred

Many thanks, Jonathan!! That's a great help to me.
Sorry, I missed your post and didn't thank you earlier.
 
F

Fred

I just wanted to thank you again, Jonathan. Such a simple way to set the
right margin and you have explained it in such an easy-to-follow way that
even a beginner like me can do it!

Many thanks!

Fred
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,023
Latest member
websitedesig25

Latest Threads

Top