As I dive into ASP.NET, I decided to start by creating a default Web App template in Visual Studio. To my surprise, despite having bootstrap.css files in the wwwroot folder, any changes I make to them seem to have no effect on the website's appearance.
For instance, in _Layout.cshtml, the @RenderBody method is enclosed in a div class="container"
. However, modifying ".container" in the CSS files doesn't yield any results. The only time I see changes is when I remove the class name "container" from the div element. Why is it that tweaking these CSS files isn't reflecting on the website?