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???
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'}