Re: Border-Radius

This is currently possible, http://border-radius.com/ allows you to generate the code but its relatively simple.

border-radius: 5px 0 0 0; applies border radius to the top left corner
border-radius: 0 5px 0 0; applies border radius to the top right corner
border-radius: 0 0 5px 0; applies border radius to the bottom right corner
border-radius: 0 0 0 5px; applies border radius to the bottom left corner

You can of course do more than one corner as follows

border-radius: 5px 5px 0 0; applies border radius to the top left and top right corners

Thanks, hope this helps

Jonathan Fielding


On 24 Jun 2014, at 08:21, James A. Wolfe <james_wolfe61@hotmail.com> wrote:

> I've been wanting to put a radius on only one or two corners of my <DIV> and am hopeful that at some point that will become available.

Received on Wednesday, 23 July 2014 14:23:13 UTC