Paragraph Tag- Why is there a huge space above?

Discussion in 'HTML & Website Design' started by nameonthecake, Aug 27, 2006.

  1. #1
    Each time I make a <P>text here</P> there is a huge space above the paragraph. How do I redefine this to not happen???
     
    nameonthecake, Aug 27, 2006 IP
  2. AdamSee

    AdamSee Well-Known Member

    Messages:
    422
    Likes Received:
    28
    Best Answers:
    0
    Trophy Points:
    135
    #2
    p {margin: 0}

    If you want a smaller margin at the top

    p {margin: 0.5em 0 0 0}

    Or one at the bottom, none at the top.

    p {margin: 0 0 0.5em 0}

    The numbers represent
    p {margin: '-top' '-right' '-bottom' '-left'}
     
    AdamSee, Aug 27, 2006 IP