In my view I have this link:
@Html.ActionLink(" ", null, null, new { @class = "Edit" })
My Edit css class:
.Edit
{
background: url("../Images/Edit.png") no-repeat;
display: inline-block;
height: 24px;
width: 24px;
vertical-align: middle;
}
Works fine, but I want to display "Edit" when the user hovers the link as alt text. any help will be appreciated.