Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created November 25, 2013 09:17
Show Gist options
  • Save jlcampana/7638684 to your computer and use it in GitHub Desktop.
Save jlcampana/7638684 to your computer and use it in GitHub Desktop.
Bordes redondeados
.roundedCorners {
border: 1px solid #000;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
.roundedTopCorners {
border: 1px solid #000;
-moz-border-radius-topleft: 10px;
-webkit-border-top-left-radius: 10px;
-moz-border-radius-topright: 10px;
-webkit-border-top-right-radius: 10px;
}
.roundedBottomCorners {
border: 1px solid #000;
-moz-border-radius-bottomleft: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomright: 10px;
-webkit-border-bottom-right-radius: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment