MVC Html.LabelFor工具提示

时间:2016-09-28 23:20:47

标签: asp.net-mvc html-helper

尝试了解如何在图标和文字之间添加更多空间

<td>@Html.LabelFor(m => m.MiscellaneousSettings.StudentPhotoUrl, new { @class = "fa fa-question-circle", Title = "SomeTooltips" }) </td>

你可以看到它非常接近:

enter image description here

2 个答案:

答案 0 :(得分:2)

在学生照片网址

之前添加空格
<td>@Html.LabelFor(m => "&nbsp;" + m.MiscellaneousSettings.StudentPhotoUrl, new { @class = "fa fa-question-circle", Title = "SomeTooltips" }) </td>

答案 1 :(得分:1)

在你的css中添加:

label.fa:before {
  margin-right: 5px;
}

这将导致:

enter image description here

请参阅this JSFiddle