nevets2001uk
IS-IT--Management
I am trying to create a CSS style sheet which includes formatting for my ASP.NET controls on each page. I've been able to format the basic elements of the controls but with one control in particular I am having problems.
I'm trying to modify the TabStrip controls appearance on one page. I can change the basic style but am unsure how to change the styles of the individual tabs.
In the code I can format them using the following...
<ie:TabStrip
TargetID = "mpgPages"
Style="width:400px;font:Arial"
TabDefaultStyle="width:50px;border:solid 1px blue"
/>
How for example do I control the TabDefaultStyle settings on a CSS document? I've tried things like...
.tabstrip {
width : 400px;
TabDefaultStyle-width : 50px;
}
But it doesn't work. Can anyone point me in the right direction. I assume it must be possible!
Steve Gordon
I'm trying to modify the TabStrip controls appearance on one page. I can change the basic style but am unsure how to change the styles of the individual tabs.
In the code I can format them using the following...
<ie:TabStrip
TargetID = "mpgPages"
Style="width:400px;font:Arial"
TabDefaultStyle="width:50px;border:solid 1px blue"
/>
How for example do I control the TabDefaultStyle settings on a CSS document? I've tried things like...
.tabstrip {
width : 400px;
TabDefaultStyle-width : 50px;
}
But it doesn't work. Can anyone point me in the right direction. I assume it must be possible!
Steve Gordon