Doubt in background and border test assessment

In background and border test assessment 2.I am unable to get star on left center and repeated stars on right at a time.
Below is my code
.box {
border:5px solid lightblue;
border-top-left-radius: 20px;
border-bottom-right-radius: 40px;
}

h2 {
text-align:center;
background:url(star.png) no-repeat left center;
background:url(star.png) repeat-y right center;
}
`

Hello @Shashi_Reddy

you doing great well done
just little thing and it will work just add single , so the barckground become like this

background:url(star.png) no-repeat left center , url(star.png) repeat-y right center;

in your code the browser make the later in code override the previous one that’s why the second one only run

hope that help and have a nice day :slight_smile: