How to make a boarder around the photo
How to make a boarder around the photo
Voters
Bookie0 (5971)
you can do what tussiez said, or in the css
file:
img {
border: 2px solid black;
}
Which does the same thing, except it'll apply for every image.
You can change the thickness by changing the number before px
, and you can change solid to dotted, outset, inset, etc.
And you can change the color to a hex color or rgb or whatever.
Check out more here :)
@tussiez Thank you! This will go great with my Chatbot.
@JohnBarnhart No problem!