Click to See Complete Forum and Search --> : Colored boarder around images


flwolf
07-02-2006, 11:53 AM
Can the color of a specific image boarder be defined individually from all other settings? Can this be done, even if the pic is inside a table / TD tag?

Thanks for any help!

Wolf

Mr J
07-02-2006, 03:55 PM
You could do it inline within the image tag

<img src="pic.jpg" style="border:1px solid red">

or give your image an ID and create a rule


<img id="mypic1" src="pic.jpg">

#mypic1{
border:1px solid red;
}

flwolf
07-02-2006, 04:21 PM
Thanks, man! I'll give it a try...