I have a very basic mvc application.
I have two css files viz ., Site.css and bootstrap.min.css .
I saw that in the application that the styles mentioned in the bootstrap.min.css is getting loaded which has the styles like
html,body{margin:0;padding:0;}
etc.
When I was debugging the code I got to know that both of the css files are present in the _Layout.cshtml
link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" link href="@Url.Content("~/Content/bootstrap.min.css")" rel="stylesheet" type="text/css"
My issue here is : Is it because the bootstrap.min.css file is used after Site.css in the order, the bootstrap.min.css style is getting applied?Or is there a way to select the default css available in MVC?