I've the following code which have button with text inside, I want to add to the button also icon from bootstrap (in the left side of the text ) how should I do that ?
The icon is glyphicon glyphicon-plus
<div style="margin-top: 20px">
<p>
@Html.ActionLink("New", "Create",
null new { @class = "Button", @style = "float:right" })
</p>
</div>
<br />
<style type="text/css">
.CreateButton {
background: blue
;
color: white;
padding: 4px 10px 4px 10px;
height: 30px;
width: 60px;
}
</style>
<br />