I am trying to give a background image to a div element, but the code I have written doesn't seem to be working:
body, html{
height: 100%;
}
.mount{
position: relative;
height: 100%;
}
.mount::before{
content: "";
width: 300px;
height: 300px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 1px solid black;
border-radius: 50%;
background-color: orange;
background-image: url(Image\mountain.png);
}
<div class="mount">