On 22 Feb 10:04, Chris G wrote:
So if I wrap the three paragraphs with the contained <a> in them in a further <div> then setting the margin/padding/border on that should have some effect?
I'll go and do some playing. :-)
Well, wrapping them in a div with its own style then you'd do things like:
div.mymagicclass p { margin: 0; padding: 0; }
That way you only affect the p tags in the new wrapping div.
Cheers,