0
私は非常に簡単なものを見落としていると思いますが、問題を見つけることができません。私はrequired
と呼ばれるCSSクラス名を持っており、ここでその上のスペックである第二div
に今シンボルの位置が間違っています
<div class="form-group">
@Html.LabelFor(model => model.Total, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10 required">
@Html.EditorFor(model => model.Total, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.Total, "", new { @class = "text-danger" })
</div>
</div>
:
.required:after{
content: "*";
font-weight: bold;
color: red;
}
私
私はこのようなコードを持ってビューを作成しますオン
レンダリング方法は次のとおりです。
テキストボックスの直後に赤いアスタリスクを表示させるにはどうすればよいですか? CSSで何が欠けていますか?
私はちょうどそれを試してみましたが、それは、テキストボックスの後にアスタリスクを入れていません。それはアスタリスクを上に置き、実際にはテキストボックスを少し押し下げます –
今すぐ確認してください。 –
浮動小数点:左にアスタリスクがありますが、入力のIDはどこに置かれますか?私は '@Html.EditorFor(model => model.Total、new {htmlAttributes = new {@id =" input "、@class ="フォームコントロール "}})'を入れて、#input {float:left}私のCSSではそれは変わっていません –