If I put in my view Layout this line:
@Styles.Render("~/Content/css")
I'm stating that all .css
files in Content
folder will be rendered? That is, I do not need to explicitly put .css
in my view , is that it? If there are 5 files inside the page, the five will be rendered and included in my view , is that right? We do not need lines like this:
<link href="~/Content/font-awesome.min.css" rel="stylesheet" />
For each .css
file I have, do I understand it correctly?