I am trying give all images within the page of my site a border similar to the thumbnails here. Not looking for animation but borders.
I have tried the following so far:
#page img {
border-top: solid 10px #000;
border-left: solid 10px #000;
border-right: solid 10px #000;
}
*The issue is the side borders go all the way to the bottom.
#page img:before {
top: -20px;
left: 20px;
right: 20px;
bottom: 20px;
background-color: #000000;
}
#page img:before {
position: absolute;
display: block;
content: ”;
}
*This didn’t produce any borders.