asp.net-mvc:テキストボックスの幅を変更する方法(Bootstrap)

テキストボックスの幅を変更するには

asp.net-mvcでbootstrapを使用した時にテキストボックスの幅を変更できない事象への解決策。 teratail.com

Site.cssの下記をコメントしbootstrapで対応するほうが良いか。

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

Bootstrap参考サイト

bootstrap3.cyberlab.info

bootstrap.hana87.club

とほほのBootstrap入門