1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

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