asp:DropDownList宽度,填充父级

时间:2013-05-15 15:19:43

标签: asp.net css

我有一个这样的下拉列表:

<asp:panel runat="server" groupingtext="Some Text">
  <table>
    <tr>
      <td><asp:DropDownList runat="server" /></td>
    </tr>
  </table>
</asp:panel>

我希望下拉列表的宽度始终填充父级的区域,而不管其中包含的项目的大小。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

dropdownlist在html中呈现为<select> 那么使用css怎么样? 像

<td><asp:DropDownList runat="server" CssClass="yourclasshere"/></td>

select.yourclasshere { width:100px }