User-1416423428 posted
I'm doing some reading... So if you have a _Layout.cshtml page, what's the advantage (if any) of using
@Styles.Render("~/css")
as opposed to just
<link rel="stylesheet" media="screen,print" href="~/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="~/css/jquery-ui-1.8.16.css">
<link rel="stylesheet" type="text/css" href="~/css/mysite.css">
<link rel="stylesheet" type="text/css" href="~/css/mysite-media.css">
Is @Styles.Render for MVC only, or will it work on a Webpages Razor project?
How do you control which CSS gets loaded first? Sometimes the ordering of CSS is important.