0

.main-header {
  height: 95;
  background-image: linear-gradient( to right bottom, (10, 132, 255, 0.8), (59, 215, 75, 0.8), url(../logo/car2.jpg));
}

I tried lots but it's not working I can't figure out what is the problem with it

Laaouatni Anas
  • 4,199
  • 2
  • 7
  • 26

1 Answers1

0

enter image description here

.main-header {
  height: 95px;
  background-image: linear-gradient(
      to right bottom,
      rgb(10, 132, 255, 0.8),
      rgb(59, 215, 75, 0.8)
    ),
    url("https://picsum.photos/300");
}
<header class="main-header">
  hello
</header>
Laaouatni Anas
  • 4,199
  • 2
  • 7
  • 26