css - Styling Links in MVC3 -
i wondering how can style plain links:
@html.actionlink("edit", "edit", new { id=model.id }) to submit button styles this:

current submit button css:
background: none repeat scroll 0 0 #438ece; border: 1px solid #004989; color: #ffffff; cursor: pointer; font-weight: bold; padding: 5px; margin-top: 15px; margin-right: 10px; 
try this: http://jsfiddle.net/eas8v/
a {     background: none repeat scroll 0 0 #438ece;     border: 1px solid #004989;     color: #ffffff;     cursor: pointer;     font-weight: bold;     padding: 5px;     margin-top: 15px;     margin-right: 10px;     text-decoration: none;     font-weight: normal;     font-family: arial; helvetica, sans-seif;     font-size: 0.8em; } 
Comments
Post a Comment