This question is locked. New answers and comments are not allowed.
When testing the following codes:
<% Html.Telerik().TabStrip().Name("Test")
.Items(tabstrip => {
tabstrip.Add().Text("Test A")
.Content(() => {%> A Content <%});
tabstrip.Add().Text("Test B")
.Content(() => {%> B Content <%});
})
.SelectedIndex(1)
.Render();
%>
I wonder if there is any way to control the width of the tab "Test A" and "Test B" (on top).
For instance, can I make the width of tab "Test A" to be 30% width of the screen, while "Test B" to be 70% width of the screen, or set them with specific size? Many thanks!
<% Html.Telerik().TabStrip().Name("Test")
.Items(tabstrip => {
tabstrip.Add().Text("Test A")
.Content(() => {%> A Content <%});
tabstrip.Add().Text("Test B")
.Content(() => {%> B Content <%});
})
.SelectedIndex(1)
.Render();
%>
I wonder if there is any way to control the width of the tab "Test A" and "Test B" (on top).
For instance, can I make the width of tab "Test A" to be 30% width of the screen, while "Test B" to be 70% width of the screen, or set them with specific size? Many thanks!
