Hello Reader's you want to make the edges with border and round in shape for all the images in you website then you just need to put CSS3 to update as below:-
border:solid 5px #000000;
-moz-border-radius: 32px;
-webkit-border-radius: 32px;
border-radius: 32px;
Here in the code above you have to put border thicknes as i put it to 5px, border radius to your need as i put it to 32 px. Now the final images will have the border with round edge. And it will looks good.
0 Comment(s)