我小的設計問題有關如何改變html.DropDownListFor的寬度()
html.DropDownListFor()
我怎樣才能改變html.DropDownListFor()
寬度? 例如通過CSS。
感謝答案
我小的設計問題有關如何改變html.DropDownListFor的寬度()
html.DropDownListFor()
我怎樣才能改變html.DropDownListFor()
寬度? 例如通過CSS。
感謝答案
你試過Html.DropDownListFor(new {width:"100"})
或Html.DropDownListFor(new {@class:"longDropdownList"})
編輯
<style>
.MakeWide { width: 200px; }
</style>
<%= Html.DropDownListFor(x => x.Name, new SelectList(new List<string>()), new { @class = "MakeWide" })%>
@Html.DropDownListFor(x => x.Name, new SelectList(new List<string>()), new {style="width:270px;"});
會做這件事。雖然最好使用CSS類
這適用於我調整寬度。但是,如何改變身高?我試圖添加「width = 270px; height = 50px」,並且看不到高度,爲什麼? – newman 2013-07-07 03:46:30
這些代碼不工作 – 2010-06-16 08:59:27
@Peter男,看到我的編輯。我已經測試過它,它的工作原理。如果它不適用於你,那麼我們有另一種類型的問題。可能另一種風格是設置所有<選擇輸入框的寬度。 – griegs 2010-06-16 09:44:10
謝謝..現在它正在工作:) – 2010-06-16 09:54:19