How to remove padding & margins using inline css

it’s been a while since I messed with much html and css so I forget if it’s possible to remove the padding and margin from an image with inline css. is it possible? if not, I suppose I’ll have to use internal css.

example:


<a href="http://test.com" title="test link">Test Link<img src="http://test.com/test.jpg" alt="test logo" /></a>

Thanks,

Andrew

Inline CSS would read:

<a href="http://test.com" title="test link"[B] style="margin:0;padding:0;"[/B]>Test Link<img [B]style="margin:0;padding:0;"[/B] src="http://test.com/test.jpg" alt="test logo" /></a>

thanks a bunch!

Just to forewarn you, there are some pretty big disadvantages of using inline styling. I just thought you should know that inline styling isn’t really the best option.