Forum Moderators: mack
I have the below code on a page with a black background, and was wondering what I need to add to it to change the border colour?
<img src="../KOTOR.jpg" width="250" height="187" border="10" align="left" />
Thanks!
Add this within <head> to affect every image on the page. <style> img { border: .2em solid #00f; } </style>
border="10" style="border-color: red green blue yellow"
1st color is the top, 2nd left, 3rd right, 4th bottom... but it may not work in older browsers. I think IE5 and higher it's ok.