bootstrapの入力フォームが広がらない

2017/05/11
Visual Studio2013のbootstrapを使ったテンプレート。
本来なら何もしなければ横幅いっぱいに広がるはずのテキストボックスやセレクトボックス等のフォームが広がらない。セレクトボックスの選択肢が途中で切れる。
bootstrapを最新版(V3系)に更新しても同じ。
Content/Site.css を確認すると…。
/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
OK キャンセル 確認 その他