For e.g, the following code will add the css class called "className" to the link that is generated. @Html.ActionLink(item.FirstName, "MyView", "MyModel", new { id = item.ID }, new { @class = "className" }) Remember to prefix the class keyword with the @ symbol, as Class is a reserverd word.