I am trying to add a background image to my ASP.NET Core application, but it's not showing.
Even a normal is not showing.
<div class="landing">
<div class="text-center">
<h2> app</h2>
<h4>blah </h4>
<button class="btn-success">See what we have</button>
</div>
</div>
<style>
.landing {
background-image: url(..\..\wwwroot\images\bkimage.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
height: auto;
}
</style>