Skip to content

Instantly share code, notes, and snippets.

@yaneshtyagi
Forked from readme42/Rounded-Corner-CSS3-Button.markdown
Last active December 23, 2015 02:59
Show Gist options
  • Save yaneshtyagi/6570218 to your computer and use it in GitHub Desktop.
Save yaneshtyagi/6570218 to your computer and use it in GitHub Desktop.
Rounded Corner Button in CSS3
<input type="button" class="rounded" value="This is a CSS3 rounded corner button"/>
input {
padding: 20px;
}
input[type=button].rounded {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
@yaneshtyagi
Copy link
Author

Is it supported by all browsers? IE8?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment