Fri, 2017-11-10 12:32
Hi
How do I place a border around an image on my page ?
I'm trying to create the page with a box-based layout.
Cheers
Fri, 2017-11-10 21:03
#1
css
If it's all images,
img { border: 1px solid black;}
If it's a number of but not all images, use the class attribute:
img.featured { border: 1px solid black;}
If it's a single image, use an id attribute:
img#featured { border: 1px solid black;}
Or, you may use the cascade from an ancestor.
This is basic stuff, so dig into your learning resources.
gary