0

I'm trying to do this on angular, on styles.scss

.main-content {
    height: 80vh;
    padding: 30px;
    background-image: '/assets/adult-g3180e6c1c_1920.jpg';
}

But Google Inspector says this: Google Inspector comment

Help please!!!

1 Answers1

0

Try

.main-content {
  height: 80vh;
  padding: 30px;
  background-image: url('assets/adult-g3180e6c1c_1920.jpg'); 
 }
Roy Christo
  • 354
  • 2
  • 13