css - Bordered image with padding -


i'm looking give pre-set style medias http://prntscr.com/7b8w3g

currently, managed give gray background giving img tag padding of 10px + background color grey when give border, forms on outter padding area whereas want thin border stick picture in above screenshot. above picture done via inline + div want pre-set pictures have default , pictures on site have it. idea how to? url (http://www.freedomgolf.com.au/)

thanks!!

to specific problem, here's idea reproduce thin dark border surrounded greater & lighter one:

img {   background-color: #232323; // set color of dark thin border   padding: 1px; // padding width make thin dark border   border: 10px solid #b2b2b2; // border make grey area surrounding thin border } 

run without comment :

img {   background-color: #232323;   padding: 1px;   border: 10px solid #b2b2b2; } 

hope help. :)


Comments

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -