.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
.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
.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>