MVC Html.LabelFor 工具提示

MVC Html.LabelFor tooltip

正在尝试了解如何在图标和文本

之间添加更多 space
<td>@Html.LabelFor(m => m.MiscellaneousSettings.StudentPhotoUrl, new { @class = "fa fa-question-circle", Title = "SomeTooltips" }) </td>

如您所见,它非常接近:

在学生照片前加一个spaceURL

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

将此添加到您的 css:

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

这将导致:

this JSFiddle