Posted By


ladirao on 10/06/12

Tagged


Statistics


Viewed 336 times
Favorited by 0 user(s)

Bordes redondeados


/ Published in: CSS
Save to your folder(s)

Css para bordes redondeados


Copy this code and paste it in your HTML
  1. .imagen
  2. {
  3. /*redondear firefox*/
  4. -moz-border-radius: 10px;
  5. /*redondear safari y chrome */
  6. -webkit-border-radius: 10px;
  7. /* para Opera */
  8. border-radius: 10px;
  9. /*IE*/
  10. behavior: url(PIE.php);
  11. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.