Sadece arka plan transparan yapma ön plan yazı ve resim etkilenmesin.
Sadece Arkaplan resmine opacity oluşturma
div {position: relative}
div::after {
content: "";
background: url(image/header9.jpg);
opacity: 0.2;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
}