/ Published in: CSS
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* doesn't work with IE without CSS3 standard */ .round_corner{ display: block; width: 300px; height: 200px; background-image: url(ddd.jpg) ; -moz-border-radius: 20px; /* Mozilla Firefox */ -webkit-border-radius: 20px; /* Webkit instructions e.g. Crome, Safari */ boder-radius: 20px; /* CSS3 standard */ }