I would like to add a white border over all my images in my content div using css. Images in the header and footer div areas should not be affected. how do I achieve this?
You can do something like this DEMO
HTMl
CSS
.imgborder { width: 300px; height: 300px; position: relative; background: url(http://placekitten.com/300/300) no-repeat; } .in-imgborder { width: 290px; height: 290px; position: absolute; top: 4px; left: 4px; border: 1px solid red; }