set a corner radius for the lower corners of a tab in a tab navigator
Posted
by Maurits de Boer
on Stack Overflow
See other posts from Stack Overflow
or by Maurits de Boer
Published on 2010-04-26T14:38:22Z
Indexed on
2010/04/27
16:43 UTC
Read the original article
Hit count: 336
Hi,
Using CSS, i can set the corner radius of the top corners of a tab in a tabnavigator:
<mx:Style>
.tabstyle
{
corner-radius: 10;
}
</mx:Style>
<mx:TabNavigator tabStyleName="tabstyle" />
However, I also want the bottom corners to have a radius. Does anyone know how to do that??
© Stack Overflow or respective owner