修改Dropdownlist样式

 <style>  
  .box  
  {  
          border:1px   solid   #C0C0C0;  
          width:182px;  
          height:19px;  
          clip:rect(0px,181px,18px,0px);  
          overflow:hidden;  
  }  
  .box2  
  {  
          border:1px   solid   #F4F4F4;  
          width:180px;  
          height:17px;  
          clip:rect(0px,179px,16px,0px);  
          overflow:hidden;  
  }  
  select.nice  
  {  
          position:relative;  
          left:-2px;  
          top:-2px;  
          font-size:12px;  
          width:183px;  
          line-height:14px;  
          border:0px;  
          color:#414141;  
  }  
  </style>

<span   class="box"><span   class="box2"><asp:dropdownlist   id=listProject   runat="server"   CssClass="nice"   DataTextField="name"   DataValueField="id"   DataSource="<%#   PrjList   %>"></asp:dropdownlist></span></span>

你可能感兴趣的:(list)