左边距在ajax选项卡控件中无法正常工作

时间:2014-03-12 11:44:07

标签: asp.net

我正在使用ajax标签控件并尝试将左边距设置为100px。 但标签看起来像这样 -       HomeProfileAboutmeProjectContact

 <ajax:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0" Width="1119px" Height="373px" CssClass="tab">
 <ajax:TabPanel runat="server" HeaderText="TabPanel1" ID="TabPanel1">
  <HeaderTemplate>
    Home
  </HeaderTemplate>
 </ajax:TabPanel>

<style type="text/css">

 .tab
 { 
   margin-left :100px;
 }
 </style>

请在我做错的地方帮忙?

1 个答案:

答案 0 :(得分:0)

使用div标签来解决这个问题 -

<div class="tab"> 
相关问题