CSS - Border Radius for rounded corners
Posted on Sat 25 January 2014 in CSS
Border radius is used to create rounded corners see the following.
[codepen_embed height=200 theme_id=1 slug_hash='emxdk' user='ianoop' default_tab='css' animations='run'/]
Above code fore border radius is equivalent to
border-top-right-radius: 20px;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
or
border-radius: 20px 20px 20px 20px;
You can specify rounded …
Continue reading

