0
How to change border colour of an image ??
Answer with example
2 Answers
+ 10
Use border property,
Ex:
img {
border: 1px solid black;
}
/* Here you create a border of solid 1px black around the image */
Hope it helps you.
+ 7
Extending Yathin Babu answer.
You can do it with CSS.
For more information , refer to this lesson by sololearn :
https://www.sololearn.com/learn/CSS/1101/
Thanks