Hello,
I am trying to create a simple RadTabStrip with 2 RadTab's. I would like the RadTabStrip width to be 100% and each RadTab to be 50%. But when I put a percentage in the RadTab like below it seems to ignore it.
I am using Telerik UI for ASP.net Ajax v.2014.3.1209.40. Thanks in advance. I appreciate the help.
I am trying to create a simple RadTabStrip with 2 RadTab's. I would like the RadTabStrip width to be 100% and each RadTab to be 50%. But when I put a percentage in the RadTab like below it seems to ignore it.
I am using Telerik UI for ASP.net Ajax v.2014.3.1209.40. Thanks in advance. I appreciate the help.
<div style="width: 100%; max-width: 1000px;"> <telerik:RadTabStrip runat="server" ID="RadTabStrip2" MultiPageID="RadMultiPage1" SelectedIndex="0" Skin="BlackMetroTouch" Width="100%"> <Tabs> <telerik:RadTab Text="Sign In" Width="50%"></telerik:RadTab> <telerik:RadTab Text="Sign Out" Width="50%"></telerik:RadTab> </Tabs> </telerik:RadTabStrip></div>