InterviewSolution
Saved Bookmarks
| 1. |
How We Can Add The Css In Mvc? |
|
Answer» Below is the sample code snippet to add css to RAZOR VIEWS: <LINK REL="StyleSheet" href="/@Href(~Content/Site.css")" TYPE="text/css"/> Below is the sample code snippet to add css to razor views: <link rel="StyleSheet" href="/@Href(~Content/Site.css")" type="text/css"/> |
|