Code

Quick and Easy CSS Rounded Corners

  • Category: Code
  • Last edited: June 16, 2016

If you’re even too lazy to visit http://border-radius.com, then use the code below for your beautiful CSS3 rounded corners. Remember if you want to round some corners and not others, just follow standard CSS shorthand (ie. 3px 3px 0px 0px).

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;