how to frame a picture with color css

Solutions on MaxInterview for how to frame a picture with color css by the best coders in the world

showing results for - "how to frame a picture with color css"
Flore
25 Jan 2018
1/* Simple thin border */
2img { 
3   border:1px solid #021a40;
4}
5
6/* Double Border */
7img {
8   padding:1px;
9   border:1px solid #021a40;
10}
11
12/* Double Border with different inside border color*/
13img {
14   padding:1px;
15   border:1px solid #021a40;
16   background-color:#ff0;
17}