Log in

View Full Version : Borderless image in bordered images page



Haisook
01-28-2006, 09:26 PM
In my blog at blogger.com, I've set the images to have borders of 1px as default. Now I want a particular image to be borderless. I've tried the (border="0") thing but it didn't work.

Thanks for help...

Twey
01-28-2006, 09:36 PM
style="border-style:none;border-width:0;"

Haisook
01-29-2006, 12:48 AM
Thank you..

What if I want to set a particular image without 'margins'?

sleipner
01-29-2006, 05:58 AM
style="margin-top:0px;"

the red can be replaced by margin-left, right, bottom, and in the example, top

Twey
01-29-2006, 01:10 PM
Or you can just set margin:0; to remove all margins.
Sleipner: 0 is the only value that doesn't require a unit.

Haisook
01-29-2006, 02:04 PM
Thanks