2016-09-28 76 views
0

試圖找出如何圖標和文本MVC Html.LabelFor提示

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

之間增加更多的空間,你可以看到它非常接近:

enter image description here

回答

1

在您的CSS添加這:

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

這將導致:

enter image description here

this JSFiddle

1

添加空間前的學生照片網址

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

完美的作品,但CSS路線將適用於我所有的圖標 - 謝謝 – Jesse