How do I reduce white space between html paragraphs?

  • Thread starter Thread starter Lisa
  • Start date Start date
L

Lisa

Guest
How do I reduce the white space with html? I don't want a full line between the paragraphs just maybe half the height. Your help will be appreciated!
Great thanks. I can't seem to be able to choose best answer so i'll try again later! thanks all!
 
You can do it with CSS, eg:

<head>
<style type="text/css">
p {margin:.5em 0 .5em 0}
</style>
</head>
<body>
<p>This paragraph has a .5em top and bottom margin. The default margin for the paragraph element is 1em.</p>
 
Back
Top