I am working in angular 5 project using VS Code. I am unable to get image on display but it is being download because it is in the network tab in developer tool of chrome browser. This means url is right.
.start {
background: #222 url('/assets/images/Untitled-1.png') center center no-repeat;
color: white;
height: 100%;
text-align: center;
}
Now added width and height to the parent div, still no image on display ;(
<div class="row">
<div class="col" style="height:100%;width:100%;">
<div class="start"></div>
</div>
</div>
It is downloaded but not being displayed. Where did I mistake?
I am following that YouTube tutorial