Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
@Html.TextBox("email")WebMatrix を使い始めたばかりで、スタイルと@Html.Password("password")コントロールの方法を知りたいですか?
@Html.TextBox("email")
@Html.Password("password")
私は(CSSファイルで)試しました:
.email{ /* styles here */ } .password{ /* styles here */ }
しかし、それはまったく効果がありません。これらのタイプのコントロールをどのようにスタイルできるでしょうか?
次のように、匿名型のテキスト ボックスを作成するときに使用するクラスを指定できます。@Html.TextBox("Email", null, new { @class="email" })
@Html.TextBox("Email", null, new { @class="email" })